Skip to content

Bump github/codeql-action from 3.26.8 to 3.26.9 #132

Bump github/codeql-action from 3.26.8 to 3.26.9

Bump github/codeql-action from 3.26.8 to 3.26.9 #132

name: Dependabot auto-merge
on:
pull_request:
workflow_call:
secrets:
DEPENDABOT_TOKEN:
required: true
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@dbb049abf0d677abbd7f7eee0375145b417fdd34 # v2.2.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Authenticate cli with a PAT
run: echo "${{ secrets.DEPENDABOT_TOKEN }}" | gh auth login --with-token
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}