build(deps): bump bedrock2 from b2cd2ba
to a2166c0
#26
Workflow file for this run
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: Dependabot Automerge | |
on: pull_request | |
permissions: | |
contents: write | |
jobs: | |
dependabot-automerge: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
env: | |
PR_URL: ${{github.event.pull_request.html_url}} | |
GH_TOKEN: ${{ github.token }} | |
steps: | |
#- name: approve | |
# run: gh pr review --approve "$PR_URL" | |
- name: merge | |
run: gh pr merge --auto --squash --delete-branch "$PR_URL" |