Skip to content

Bump hono from 4.6.16 to 4.6.17 #5

Bump hono from 4.6.16 to 4.6.17

Bump hono from 4.6.16 to 4.6.17 #5

Workflow file for this run

name: Auto-merge Pull Requests
on:
pull_request:
types: [opened, synchronize, reopened]
branches: [main]
permissions:
contents: write
pull-requests: write
jobs:
auto-merge:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Ensure all checks have passed
run: gh pr checks "$PR_URL" --required --watch --fast-fail
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Merge the pull request
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}