Skip to content

Commit cb94382

Browse files
authored
ci: vouch dependabot[bot] (#3496)
Dependabot's first auto-bump PR (#3495) was auto-closed because `dependabot[bot]` isn't in the vouch list and isn't exempt from the require-draft check. Two changes: - Add `dependabot[bot]` to `.github/VOUCHED.td` so the vouch check passes. - Add `dependabot[bot]` to the require-draft exception in `vouch-check-pr.yml` (alongside `devin-ai-integration[bot]`) so its PRs aren't closed for being non-draft. Without both, dependabot bumps will keep getting closed and we lose the weekly action update flow that #3494 set up.
1 parent d825427 commit cb94382

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/VOUCHED.td

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ samejr
1313
isshaddad
1414
# Bots
1515
devin-ai-integration[bot]
16+
dependabot[bot]
1617
# Outside contributors
1718
gautamsi
1819
capaj

.github/workflows/vouch-check-pr.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ jobs:
2828
github.event.pull_request.author_association != 'MEMBER' &&
2929
github.event.pull_request.author_association != 'OWNER' &&
3030
github.event.pull_request.author_association != 'COLLABORATOR' &&
31-
github.event.pull_request.user.login != 'devin-ai-integration[bot]'
31+
github.event.pull_request.user.login != 'devin-ai-integration[bot]' &&
32+
github.event.pull_request.user.login != 'dependabot[bot]'
3233
runs-on: ubuntu-latest
3334
steps:
3435
- name: Close non-draft PR

0 commit comments

Comments
 (0)