This repository was archived by the owner on Dec 11, 2025. It is now read-only.
Bump the npm group across 1 directory with 12 updates #56
Workflow file for this run
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: auto-merge | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| pull-request-auto-merge: | |
| runs-on: ubuntu-latest | |
| # リポジトリオーナーの Pull Request はドラフト以外は自動マージを有効にする | |
| if: ${{ github.event.pull_request.draft == false && (github.actor == 'dependabot[bot]' || github.repository_owner == github.actor) }} | |
| steps: | |
| - uses: actions/[email protected] | |
| - name: Enable auto-merge for Pull Request | |
| run: | | |
| gh pr review --approve "$PR_URL" | |
| gh pr merge --auto --squash "$PR_URL" | |
| env: | |
| PR_URL: ${{github.event.pull_request.html_url}} | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |