Skip to content

Commit

Permalink
Merge pull request #5031 from ivanmjartan/IMJ-STL-613
Browse files Browse the repository at this point in the history
ci: fix GA auto commits to meet new lint

Reviewed-by: Petr Benes <[email protected]>
             https://github.com/pbenes
  • Loading branch information
gdgate authored Jun 18, 2024
2 parents 0a7d786 + 3c01ff2 commit 3abd0d7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rw-bump-version-major.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
run: |
git ls-files | grep '\.json' | xargs git add
git commit -a -m "chore: bump versions to $NEXT_VERSION" -m "" -m "TRIVIAL"
git commit -a -m "chore: bump versions to $NEXT_VERSION" -m "risk: nonprod"
git push origin ${SOURCE_BRANCH}
- name: Get version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rw-bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
git add libs/sdk-ui-all/CHANGELOG.* || true
git ls-files | grep '\.json' | xargs git add
git commit -a -m "chore: bump versions to $VERSION" -m "" -m "TRIVIAL"
git commit -a -m "chore: bump versions to $VERSION" -m "risk: nonprod"
git push origin ${{ inputs.source-branch }}
env:
VERSION: ${{ steps.version.outputs.version }}
2 changes: 1 addition & 1 deletion .github/workflows/rw-doc-release-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
run: |
cd gooddata-ui-apidocs
git add --all
git commit -m "chore: create a new api docs version $VERSION" -m "" -m "TRIVIAL"
git commit -m "chore: create a new api docs version $VERSION" -m "risk: nonprod"
git show --stat
echo "Going to push to gooddata-ui-apidocs"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rw-doc-update-hugo-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
run: |
git add ${path_to_version_config}
git add ${path_to_redir_config}
git commit -m "chore: update Hugo version to ${version}" -m "" -m "TRIVIAL"
git commit -m "chore: update Hugo version to ${version}" -m "risk: nonprod"
git push origin ${brach_name}
env:
brach_name: ${{inputs.source-branch}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rw-fossa-update-attribution-file.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,6 @@ jobs:
BRANCH: ${{ inputs.source-branch }}
run: |
git add NOTICE
git commit -m "chore: update attribution file" -m "" -m "TRIVIAL"
git commit -m "chore: update attribution file" -m "risk: nonprod"
git pull --rebase origin ${BRANCH}
git push origin HEAD
2 changes: 1 addition & 1 deletion .github/workflows/rw-git-backmerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
done
# commit only if bump produced some changes
git diff --exit-code || git commit --no-verify -a -m "chore: bumped version of sdk packages to $version which is in $TARGET_BRANCH" -m "" -m "TRIVIAL"
git diff --exit-code || git commit --no-verify -a -m "chore: bumped version of sdk packages to $version which is in $TARGET_BRANCH" -m "risk: nonprod"
# rush bump to something that's in target branch
git merge --verbose --no-ff origin/$TARGET_BRANCH || true
Expand Down

0 comments on commit 3abd0d7

Please sign in to comment.