Skip to content

Bump clap from 4.5.23 to 4.5.24 #27

Bump clap from 4.5.23 to 4.5.24

Bump clap from 4.5.23 to 4.5.24 #27

Workflow file for this run

name: Auto-merge PR
on: pull_request_target
jobs:
enable_automerge:
if: |
github.event.pull_request.draft == false && (
github.actor == 'dependabot[bot]' ||
github.actor == 'rraval'
)
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- name: Enable automerge
run: gh pr merge --repo "${{ github.repository }}" --rebase --auto "${{ github.event.number }}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}