add reapproal (#1279)

This commit is contained in:
CanbiZ 2025-01-06 08:39:02 +01:00 committed by GitHub
parent 8bf7f7a460
commit 8431931cc4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -157,3 +157,13 @@ jobs:
if [ -n "$PR_NUMBER" ]; then
gh pr review $PR_NUMBER --approve
fi
- name: Re-approve pull request after update
if: steps.verify-diff.outputs.changed == 'true'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
PR_NUMBER=$(gh pr list --head "${BRANCH_NAME}" --json number --jq '.[].number')
if [ -n "$PR_NUMBER" ]; then
gh pr review $PR_NUMBER --approve
fi