Bump coqprime from d5935ca
to 6c225a2
#88
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dependabot Automerge | |
on: pull_request | |
permissions: | |
contents: write | |
jobs: | |
dependabot-automerge: | |
runs-on: ubuntu-latest | |
env: | |
PR_URL: ${{github.event.pull_request.html_url}} | |
GH_TOKEN: ${{ github.token }} | |
steps: | |
- name: describe for '${{ github.event.pull_request.title }}' | |
run: | | |
printf "github.actor == '%s'\n" "${{ github.actor }}" | |
- name: merge | |
run: gh pr merge --auto --squash --delete-branch "$PR_URL" | |
if: ${{ github.actor == 'dependabot[bot]' }} |