This repository was archived by the owner on May 14, 2025. It is now read-only.
Remove repo-updater container #7150
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
| # based on https://github.com/pascalgn/automerge-action/tree/v0.9.0#usage | |
| name: Automerge | |
| on: | |
| pull_request: | |
| types: | |
| - labeled | |
| - unlabeled | |
| - synchronize | |
| - opened | |
| - edited | |
| - ready_for_review | |
| - reopened | |
| - unlocked | |
| pull_request_review: | |
| types: | |
| - submitted | |
| check_suite: | |
| types: | |
| - completed | |
| status: {} | |
| jobs: | |
| automerge: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: automerge | |
| uses: pascalgn/[email protected] | |
| env: | |
| # Allows this merge to trigger other actions | |
| GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
| MERGE_METHOD: squash |