Skip to content

Commit

Permalink
fix: adding separate automerge workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
builder555 committed Feb 20, 2023
1 parent 6f810f9 commit e219228
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: automerge
on:
pull_request:
types:
- labeled
- unlabeled
- synchronize
- opened
- edited
- ready_for_review
- reopened
- unlocked
jobs:
auto-merge:
runs-on: ubuntu-latest
needs: [release-please]
steps:
- uses: "pascalgn/automerge-action@v0.15.6"
env:
GITHUB_TOKEN: "${{ secrets.TOKEN }}"
UPDATE_LABELS: "autorelease: pending"
MERGE_LABELS: "autorelease: pending"
MERGE_REMOVE_LABELS: "autorelease: pending"
MERGE_REQUIRED_APPROVALS: "0"
MERGE_RETRIES: "3"
MERGE_RETRY_SLEEP: "2000"
MERGE_ERROR_FAIL: "true"
MERGE_METHOD: "merge"
MERGE_FILTER_AUTHOR: "builder555"
MERGE_FORKS: "false"
LOG: "DEBUG"

0 comments on commit e219228

Please sign in to comment.