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 38f6bfa commit 098762dCopy full SHA for 098762d
.github/workflows/ci.yml
@@ -77,10 +77,9 @@ jobs:
77
- uses: FantasticFiasco/action-update-license-year@v2
78
with:
79
token: ${{ secrets.GITHUB_TOKEN }}
80
+ id: license
81
- name: Merge PR
- # Disabled until issue with wrong merging PR is fixed.
82
- # See https://github.com/FantasticFiasco/action-update-license-year/discussions/276#discussioncomment-3985583
83
- if: ${{ false }}
+ if: steps.license.outputs.pullRequestNumber != ''
84
env:
85
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
86
- run: gh pr merge --rebase --delete-branch
+ run: gh pr merge --rebase --delete-branch ${{ steps.license.outputs.pullRequestNumber }}
0 commit comments