Skip to content

Commit a1428ea

Browse files
Copilotdecyjphr
andcommitted
Fix Dependabot actor check in node-ci.yml workflow
The `if` condition used `'dependabot'` but Dependabot's actual GitHub actor username is `'dependabot[bot]'`. This caused the test job to run for Dependabot PRs when it should be skipped, resulting in npm install failures due to ESLint 10 peer dependency conflicts. Co-authored-by: decyjphr <57544838+decyjphr@users.noreply.github.com>
1 parent 358def6 commit a1428ea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/node-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111

1212
jobs:
1313
test:
14-
if: ${{ github.actor != 'dependabot'}}
14+
if: ${{ github.actor != 'dependabot[bot]'}}
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v6

0 commit comments

Comments
 (0)