Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
---
name: "Dependency Review"

on:
pull_request:
types:
- opened
- synchronize
- labeled
- unlabeled
- reopened
- edited
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unmentioned removal of labeled/unlabeled event triggers

Low Severity

The labeled and unlabeled pull request event triggers were removed, but the PR description only mentions adding the edited trigger and concurrency config — it doesn't mention removing any existing triggers. These triggers may have been used to allow re-running dependency review by toggling a label on a PR. This looks like an accidental removal during editing of the trigger list.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit a8b4a40. Configure here.


permissions:
contents: read
pull-requests: write

concurrency:
group: ${{ github.workflow }}-${{ github.repository }}-${{ github.event.number }}
cancel-in-progress: true

jobs:
dependency-review:
runs-on: ubuntu-latest
Expand Down
Loading