⬆️ Bump brace-expansion, canvas and jest #1018
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Merge PRs | |
| on: | |
| pull_request: | |
| types: | |
| - labeled | |
| - synchronize | |
| - opened | |
| - edited | |
| - ready_for_review | |
| - reopened | |
| - unlocked | |
| pull_request_review: | |
| types: | |
| - submitted | |
| permissions: | |
| checks: read | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| statuses: read | |
| jobs: | |
| automerge: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Automerge | |
| uses: pascalgn/automerge-action@v0.16.4 | |
| env: | |
| GITHUB_TOKEN: "${{ secrets.GH_PAT || github.token }}" | |
| MERGE_LABELS: "merge,!work in progress,!wip" | |
| MERGE_REMOVE_LABELS: "merge" | |
| MERGE_METHOD: "merge" | |
| MERGE_COMMIT_MESSAGE: ":twisted_rightwards_arrows: Merge #{pullRequest.number} ({pullRequest.title})" | |
| MERGE_FORKS: false | |
| UPDATE_LABELS: "merge" | |
| UPDATE_METHOD: "merge" | |
| - name: Delete merged branch | |
| uses: koj-co/delete-merged-action@master | |
| with: | |
| branches: "!master, !production, *" | |
| env: | |
| GITHUB_TOKEN: "${{ secrets.GH_PAT || github.token }}" |