mirror of
https://github.com/izzy2lost/Diddy-Kong-Racing.git
synced 2026-06-19 01:16:26 -07:00
15 lines
308 B
YAML
15 lines
308 B
YAML
name: Auto approve
|
|
|
|
on: pull_request_target
|
|
|
|
jobs:
|
|
auto-approve:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
pull-requests: write
|
|
if: github.actor == 'github-actions[bot]'
|
|
steps:
|
|
- uses: hmarr/auto-approve-action@v3
|
|
with:
|
|
github-token: ${{ secrets.AUTO_APPROVE_PAT }}
|