Skip to content

automated-pr-approve #6091

automated-pr-approve

automated-pr-approve #6091

Workflow file for this run

name: automated-pr-approve
on:
workflow_dispatch:
schedule:
- cron: '*/45 * * * *'
permissions:
contents: read
jobs:
review-pr:
runs-on: ubuntu-latest
if: github.repository == 'wolfi-dev/os'
permissions:
contents: read
pull-requests: write
steps:
- name: Harden Runner
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
egress-policy: audit
- name: Check out repository code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- run: |
./scripts/auto-approve-pr.sh ${{ github.repository }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}