Skip to content
Merged
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
7 changes: 7 additions & 0 deletions .github/workflows/commitperclip-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ jobs:

- name: Dependency Review
uses: actions/dependency-review-action@a1d282b36b6f3519aa1f3fc636f609c47dddb294 # v5.0.0
# Non-fatal: the action errors at startup ("Dependency review is not
# supported on this repository") whenever the Dependency graph feature
# is disabled in repo settings. Guarding the step keeps the `review`
# check honest — it goes red only on real quality-gate failures, not on
# an unavailable platform feature. Remove this guard once Dependency
# graph is enabled (Settings -> Code security & analysis). See FLO-252.
continue-on-error: true
with:
base-ref: ${{ github.event.pull_request.base.sha }}
head-ref: ${{ github.event.pull_request.head.sha }}
Expand Down
Loading