Skip to content

Bump org.yaml:snakeyaml from 2.5 to 2.6 #196

Bump org.yaml:snakeyaml from 2.5 to 2.6

Bump org.yaml:snakeyaml from 2.5 to 2.6 #196

Workflow file for this run

name: Auto-Merge Dependabot PRs
on:
pull_request:
permissions:
contents: write
pull-requests: write
issues: none
jobs:
automerge:
name: Auto-Merge Dependabot PRs
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Get Dependabot metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Enable auto-merge
run: |
gh pr review --approve "$PR_URL"
gh pr merge --squash --auto "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}