Skip to content

Bump hono from 4.12.12 to 4.12.14 in the npm_and_yarn group across 1 directory #92

Bump hono from 4.12.12 to 4.12.14 in the npm_and_yarn group across 1 directory

Bump hono from 4.12.12 to 4.12.14 in the npm_and_yarn group across 1 directory #92

name: Enable Auto Merge
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
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:
- 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}}