Skip to content

Bump actions/configure-pages from 3 to 4 #31

Bump actions/configure-pages from 3 to 4

Bump actions/configure-pages from 3 to 4 #31

Workflow file for this run

name: Dependabot auto-merge
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
steps:
- name: Enable auto-merge for Dependabot PRs
run: |
git config --global user.name "dependabot[bot]"
git config --global user.email "dependabot[bot]@users.noreply.github.com"
gh pr merge --auto --merge "$PR_URL"
gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.TOKEN_GITHUB}}