We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 82480de + 8873568 commit b30678bCopy full SHA for b30678b
.github/workflows/reusable_publish_changelog.yml
@@ -30,11 +30,12 @@ jobs:
30
git pull origin "${BRANCH}"
31
- name: "Generate latest changelog"
32
run: make changelog
33
- - name: Update Changelog in trunk
+ - name: Update Changelog with PR
34
run: |
35
HAS_CHANGE=$(git status --porcelain)
36
test -z "${HAS_CHANGE}" && echo "Nothing to update" && exit 0
37
+ git checkout -b update-changelog-${{github.run_id}}
38
git add CHANGELOG.md
39
git commit -m "update changelog with latest changes"
40
git pull origin "${BRANCH}" # prevents concurrent branch update failing push
- git push origin HEAD:refs/heads/"${BRANCH}"
41
+ git push origin update-changelog-${{github.run_id}}
0 commit comments