Skip to content
Closed
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Dependency Review

on:
pull_request:
paths-ignore:
- "docs/**"
- "*.md"

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🟡 Nested Markdown changes still launch scans

Markdown-only PRs under .jules or .agents still launch both scans because *.md matches only repository-root files.

Prompt for agents
Update the Markdown path-ignore pattern in both .github/workflows/dependency-review.yml and .github/workflows/osvscanner.yml so it matches Markdown files at any repository depth, including root files and nested files under .jules and .agents. Preserve the docs/** exclusion and verify the resulting GitHub Actions path-filter semantics for both root and nested Markdown-only pull requests.
Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

workflow_dispatch:

permissions:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/osvscanner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: OSV Scanner

on:
pull_request:
paths-ignore:
- "docs/**"
- "*.md"
workflow_dispatch:

permissions:
Expand Down
Loading