Skip to content

Bump github/codeql-action from 3.25.12 to 3.25.13 #406

Bump github/codeql-action from 3.25.12 to 3.25.13

Bump github/codeql-action from 3.25.12 to 3.25.13 #406

name: Dependabot - Auto-merge
# yamllint disable-line rule:truthy
on:
push:
branches:
- master
pull_request:
types:
- opened
- reopened
- synchronize
workflow_call:
workflow_dispatch:
permissions:
pull-requests: write
contents: write
jobs:
dependabot-automerge:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2.2.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}