ci(nox): add .nox.yaml golden excludes#63
Merged
Merged
Conversation
Adds the golden .nox.yaml so the security gate flags real findings, not commit-SHA / module-digest / doc-example patterns that the entropy secret rules misfire on. Matches the org nox.reference.yaml.
There was a problem hiding this comment.
Pull request overview
This PR introduces a repository-level .nox.yaml configuration intended to reduce “entropy” false positives in the org’s nox security/secret scanning (notably after the nox v1 bump), so CI gates fail on real findings rather than known-noisy files.
Changes:
- Adds a new
.nox.yamlfile defining scan exclusion globs for known high-entropy / noisy inputs.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+10
to
+12
| # CI workflows: pinned commit SHAs + GITHUB_TOKEN references look like | ||
| # secret patterns to entropy-based rules. | ||
| - ".github/workflows/*.yml" |
Comment on lines
+13
to
+18
| # Documentation contains example code snippets and curl commands with | ||
| # placeholder tokens / API keys. | ||
| - "README.md" | ||
| - "CHANGELOG.md" | ||
| - "docs/*.md" | ||
| - "**/README.md" |
Comment on lines
+19
to
+23
| # Generated coverage badge. | ||
| - "assets/coverage-badge.svg" | ||
| # Grafana dashboard JSON contains Prometheus query expressions that | ||
| # match SEC-680 against `prometheus_*_total` metric names. | ||
| - "assets/grafana/*.json" |
Comment on lines
+24
to
+26
| # Generated artifacts. | ||
| - "nox-out/" | ||
| - "release-artifacts/" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds the golden .nox.yaml (workflow/doc/go.sum excludes) so nox flags real findings, not entropy false positives. Fixes the SEC-* secret-FP gate failures surfaced after the org nox v1 bump.