build(deps): bump EDILibrary.Core from 1.8.3 to 2.1.0 in /TransformerBeeClient #245
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 auto-approve / -merge | |
on: pull_request | |
jobs: | |
dependabot: | |
permissions: | |
contents: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
env: | |
PR_URL: ${{github.event.pull_request.html_url}} | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Verify commit signature. | |
run: | | |
curl -s https://github.com/web-flow.gpg | gpg --import | |
echo "Imported GitHub keys." | |
echo "Verifying signature of commit: $GITHUB_SHA" | |
if ! git verify-commit "$GITHUB_SHA"; then | |
echo "Commit signature verification failed." | |
exit 1 | |
fi | |
- name: Approve a PR | |
run: gh pr review --approve "$PR_URL" | |
- name: Enable auto-merge for Dependabot PRs | |
run: gh pr merge --auto --squash "$PR_URL" |