build(deps): bump node from 23.11-alpine to 24.0-alpine #817
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: Dependabot auto-approve / -merge | |
# automatically squash merges dependabot upgrades if required CI actions pass | |
on: pull_request | |
jobs: | |
dependabot: | |
permissions: | |
contents: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
env: | |
PR_URL: ${{github.event.pull_request.html_url}} | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
steps: | |
- name: Approve a PR | |
run: gh pr review --approve "$PR_URL" | |
- name: Enable auto-merge for Dependabot PRs | |
run: gh pr merge --auto --squash "$PR_URL" |