Skip to content

Commit c828744

Browse files
milkyskiesclaude
andauthored
chore: [#1397] skip chore label for Dependabot PRs in pr-labeler (#1398)
## Summary - Dependabot PRs were getting a `chore` label because their titles start with `chore(deps):`, triggering the pr-labeler workflow - Added an early return in `pr-labeler.yml` to skip labeling when the PR author is `dependabot[bot]` - Dependabot PRs already get the `dependencies` label via `dependabot.yml` — no change needed there closes #1397 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: milkyskies <milkyskies> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 5f0970b commit c828744

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/pr-labeler.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
uses: actions/github-script@v9
1515
with:
1616
script: |
17+
if (context.payload.pull_request.user.login === 'dependabot[bot]') return;
18+
1719
const title = context.payload.pull_request.title;
1820
const labels = [];
1921

0 commit comments

Comments
 (0)