fix: bump minimum Node.js engine to 22.13.0 and ignore util.styleText in node-builtins lint rule #377
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: 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 | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - id: automerge | |
| name: automerge | |
| uses: "pascalgn/automerge-action@v0.16.4" | |
| env: | |
| GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
| # we only merge PRs with labels of "dependencies" | |
| MERGE_LABELS: "automerge" | |
| MERGE_REMOVE_LABELS: "automerge" | |
| MERGE_METHOD: "squash" | |
| MERGE_COMMIT_MESSAGE: "automatic" | |
| MERGE_FORKS: "false" | |
| MERGE_REQUIRED_APPROVALS: "0" | |
| UPDATE_METHOD: "rebase" |