Skip to content

Commit

Permalink
ci: fix syntax error on pr-auto-merge
Browse files Browse the repository at this point in the history
  • Loading branch information
konokenj authored Aug 31, 2022
1 parent 2760eb5 commit d6011b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
- name: Approve and enable auto-merge a PR
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-minor'} || steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-minor' || steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
run: |
gh pr review --approve "$PR_URL"
gh pr merge --auto --merge "$PR_URL"
Expand Down

0 comments on commit d6011b4

Please sign in to comment.