Skip to content

ci: remove zizmor and frizbee jobs from goCI.yml #356

ci: remove zizmor and frizbee jobs from goCI.yml

ci: remove zizmor and frizbee jobs from goCI.yml #356

name: Dependabot auto-merge
on:
pull_request:
workflow_call:
secrets:
DEPENDABOT_TOKEN:
required: true
permissions: {}
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
permissions:
contents: write
pull-requests: write
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@21025c705c08248db411dc16f3619e6b5f9ea21a # v2.5.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}}