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.
1 parent c84f966 commit ee009b8Copy full SHA for ee009b8
.github/workflows/bump.yml
@@ -82,14 +82,15 @@ jobs:
82
run: |
83
NEW_BRANCH="update/bump-dependency-versions-$(date +'%d-%m-%Y')"
84
git checkout -b "$NEW_BRANCH"
85
+ echo "::set-output name=new_branch::$NEW_BRANCH"
86
87
- name: 🔍 Check for changes and commit
88
89
git diff --quiet || git commit -am "Update dependencies"
90
91
- name: 🚀 Push changes
92
if: success()
- run: git push origin "$NEW_BRANCH"
93
+ run: git push origin ${{ steps.create_branch.outputs.new_branch }}
94
95
- name: 🔀 Create Pull Request
96
uses: repo-sync/pull-request@v2
0 commit comments