Skip to content

Commit 067f740

Browse files
committed
fix(ci): include github-actions[bot] in auto-approve
release-please PRs are authored by github-actions[bot]. Without this, the auto-approve workflow skips them, and any new commits that dismiss a stale human approval leave the PR stuck with REVIEW_REQUIRED. Signed-off-by: Sebastien Tardif <sebtardif@ncf.ca>
1 parent 90cef29 commit 067f740

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/auto-approve.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ jobs:
2121
pull-requests: write
2222
if: >
2323
github.event.pull_request.user.login == 'SebTardif' ||
24-
github.event.pull_request.user.login == 'dependabot[bot]'
24+
github.event.pull_request.user.login == 'dependabot[bot]' ||
25+
github.event.pull_request.user.login == 'github-actions[bot]'
2526
steps:
2627
- name: Harden runner
2728
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0

0 commit comments

Comments
 (0)