chore(deps-dev): bump eslint_d from 13.1.2 to 14.2.0 #998
This file contains 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 | |
permissions: | |
pull-requests: write | |
contents: write | |
on: | |
pull_request: | |
types: [opened, synchronize, labeled, reopened] | |
jobs: | |
pr: | |
if: contains(github.event.pull_request.labels.*.name, 'automerge') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set Auto-Merge PR | |
run: | | |
gh pr merge --auto --squash --body="[ci skip]" "$PR_URL" | |
gh pr review --approve "$PR_URL" | |
env: | |
PR_URL: ${{ github.event.pull_request.html_url }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |