Skip to content

Commit

Permalink
use valid bot email and flag --signoff to pass DCO check in CI
Browse files Browse the repository at this point in the history
Signed-off-by: Rui Yang <ruiya@vmware.com>
  • Loading branch information
Rui Yang committed Oct 31, 2023
1 parent 0c43c11 commit 82bf040
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions tasks/scripts/bump-chart-app-version
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ pushd concourse-chart

git --no-pager diff

git config --global user.email "ci@localhost"
git config --global user.email "ci@localhost.com"
git config --global user.name "CI Bot"

git add -A
git commit -m "bump app version and image tag"
git commit -m "bump app version and image tag" --signoff
popd
4 changes: 2 additions & 2 deletions tasks/scripts/bump-chart-version
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ pushd concourse-chart

git diff

git config --global user.email "ci@localhost"
git config --global user.email "ci@localhost.com"
git config --global user.name "CI Bot"

git add -A
git diff-index --quiet HEAD || git commit -m 'bump chart version'
git diff-index --quiet HEAD || git commit -m 'bump chart version' --signoff
popd
2 changes: 1 addition & 1 deletion tasks/scripts/bump-concourse-blobs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ pushd bumped-concourse-release-repo/
bosh -n upload-blobs

git add -A
git commit -m "bump concourse"
git commit -m "bump concourse" --signoff
popd
4 changes: 2 additions & 2 deletions tasks/scripts/bump-postgres-chart-version
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ pushd concourse-chart

helm dependency update

git config --global user.email "ci@localhost"
git config --global user.email "ci@localhost.com"
git config --global user.name "CI Bot"

git add -A
git commit -m "bump postgres version"
git commit -m "bump postgres version" --signoff
popd

0 comments on commit 82bf040

Please sign in to comment.