Skip to content

build(deps): bump xunit.runner.visualstudio from 2.8.2 to 3.0.2 in /TransformerBeeClient #243

build(deps): bump xunit.runner.visualstudio from 2.8.2 to 3.0.2 in /TransformerBeeClient

build(deps): bump xunit.runner.visualstudio from 2.8.2 to 3.0.2 in /TransformerBeeClient #243

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"