Skip to content

Commit

Permalink
fix(ci): update add to merge queue syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
tay1orjones committed Jul 19, 2023
1 parent 52fd3db commit 66004ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/add-to-merge-queue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
Add to Merge Queue if the PR is labelled with any of the automerge labels
runs-on: ubuntu-latest
if:
${{ contains(github.event.issue.labels.*.name, 'status:\ ready to merge
🎉') || contains(github.event.issue.labels.*.name, 'status:\ enable
automerge 🟠')}}
"${{ contains(github.event.issue.labels.*.name, 'status: ready to merge
🎉') || contains(github.event.issue.labels.*.name, 'status: enable
automerge 🟠')}}"
steps:
- name: 'Add the PR to the merge queue via the GitHub CLI'
run: gh pr merge
Expand Down

0 comments on commit 66004ba

Please sign in to comment.