-
Notifications
You must be signed in to change notification settings - Fork 0
fix(ci): skip docs-only changes for ci and CodeQL workflows #141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,7 +3,13 @@ name: ci | |
| on: | ||
| push: | ||
| branches: [main] | ||
| paths-ignore: | ||
| - "docs/**" | ||
| - "*.md" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🟡 Nested documentation still triggers workflows Markdown outside the root and Prompt for agentsWas this helpful? React with 👍 or 👎 to provide feedback. |
||
| pull_request: | ||
| paths-ignore: | ||
| - "docs/**" | ||
| - "*.md" | ||
|
Comment on lines
+6
to
+12
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
|
||
| # Cancel superseded evidence for the same pull request or branch. This keeps the | ||
| # runner queue bounded during review-fix loops while preserving the newest head. | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🟡 Documentation contracts lose validation
When a pull request changes only contract documents,
paths-ignoresuppresses the sole job validating their invariants. Broken documentation contracts can merge undetected.Prompt for agents
Was this helpful? React with 👍 or 👎 to provide feedback.