Skip to content

chore(deps): update actions/checkout digest to 1d96c77 #3

chore(deps): update actions/checkout digest to 1d96c77

chore(deps): update actions/checkout digest to 1d96c77 #3

Workflow file for this run

name: Auto-approve PR
on: pull_request_target
permissions:
contents: write
pull-requests: write
jobs:
auto-approve-renovate-prs:
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: '0'
- name: Approve PR
if: github.actor == 'renovate[bot]'
run: |
gh pr review --approve ${{ github.event.number }} -b "I'm **approving** \
this pull request because it includes a patch or minor update."
env:
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}"