Skip to content

Commit 0870fce

Browse files
rlespinasseclaude
andcommitted
fix(ci): match dependabot PR author instead of github.actor
github.actor devient le login de la personne qui relance le workflow lors d'un re-run manuel, ce qui saute silencieusement le job d'auto-merge. github.event.pull_request.user.login décrit l'auteur de la PR et ne varie pas au re-run. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
1 parent 5878d72 commit 0870fce

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/dependabot-auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88

99
jobs:
1010
auto-merge:
11-
if: github.actor == 'dependabot[bot]'
11+
if: github.event.pull_request.user.login == 'dependabot[bot]'
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Dependabot metadata

0 commit comments

Comments
 (0)