Skip to content

Commit

Permalink
ci(automerge): Update/fix automerge workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gracedo committed Oct 3, 2024
1 parent f9e94ca commit 930eec4
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions .github/workflows/automerge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ on:
- edited
- ready_for_review
- reopened
- unlocked
branches:
- main
- 'release/*'
paths:
- 'services/**/*'
check_suite:
types:
- completed
Expand All @@ -24,15 +18,15 @@ jobs:
automerge:
runs-on: ubuntu-latest
steps:
- name: Enable auto-merge for automated chart bump PRs
- name: Enable auto-merge for automated chart bump PRs or label
id: automerge
if: |
startsWith(github.head_ref, 'chartbump/')
(startsWith(github.head_ref, 'chartbump/') || contains(github.event.pull_request.labels.*.name, 'auto-merge'))
&& contains(github.event.pull_request.labels.*.name, 'ready-for-review')
&& !contains(github.event.pull_request.labels.*.name, 'do-not-merge')
&& !contains(github.event.pull_request.labels.*.name, 'do-not-merge/testing')
&& !contains(github.event.pull_request.labels.*.name, 'let-me-merge-it')
&& !contains(github.event.pull_request.labels.*.name, 'let-me-merge-it'))
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.MERGEBOT_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 930eec4

Please sign in to comment.