ci: bypass L1/Issue/NOW gates for trusted bots (Closes #1059) - #1060
Merged
Conversation
Closes #1059 Dependabot PRs (#1057 rusqlite, #1058 chrono) fail three gates by design: - L1 TRACEABILITY (commits need Closes #N) - Issue Gate (PR body needs Closes|Fixes|Resolves #N) - NOW Sync Gate (docs/NOW.md must change) Bots maintain deps -- not features -- and cannot reference issues. Adds job-level guard: if: github.actor != 'dependabot[bot]' && github.actor != 'github-actions[bot]' Effect: gates are SKIPPED (not FAILED) for trusted bot actors. Constitutional Law L1 still enforced for all human PRs. The L1 summary job now reports 'Skipped (trusted bot actor)' for clarity.
Contributor
|
📓 NotebookLM Notebook linked to this PR
This notebook contains session context, decisions, and artifacts for this work. |
Contributor
Contributor
|
📓 NotebookLM Notebook linked to this PR
This notebook contains session context, decisions, and artifacts for this work. |
Contributor
PR DashboardGenerated at: 2026-06-08 10:14:58 UTC
Summary
|
gHashTag
force-pushed
the
fix/dependabot-gate-bypass
branch
from
June 8, 2026 10:32
c5ee9b1 to
3f4af70
Compare
Contributor
|
📓 NotebookLM Notebook linked to this PR
This notebook contains session context, decisions, and artifacts for this work. |
Contributor
PR DashboardGenerated at: 2026-06-08 10:32:20 UTC
Summary
|
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.
What
Adds
if: github.actor != 'dependabot[bot]' && github.actor != 'github-actions[bot]'to three job-level guards:.github/workflows/l1-traceability.yml.github/workflows/issue-gate.yml.github/workflows/now-sync-gate.ymlWhy
Dependabot PRs #1057 (rusqlite) and #1058 (chrono) failed all three gates because bots cannot reference issues or update docs/NOW.md for routine dep bumps.
Failing runs:
Effect
Skipped (trusted bot actor)for clarityAcceptance
After merge, rerun #1057 and #1058 -- all three gates should show 'skipped' instead of 'failed'.
Closes #1059