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
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ jobs:
lint-typecheck:
name: Lint & Type Check
# Advisory only — does not block build or other jobs.
# Remove continue-on-error once repo lint errors are resolved.
continue-on-error: true
# No "needs:" from other jobs, so failures here won't block CI.
uses: OrrisTech/.github/.github/workflows/ci-lint-typecheck.yml@main
Comment on lines 26 to 28
Copy link

Copilot AI Feb 20, 2026

Choose a reason for hiding this comment

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

These comments are misleading now that continue-on-error: true was removed. Even without needs:, a failing job will still make the overall workflow conclude as failed (and can block PR merge via required status checks). Either re-add continue-on-error: true to keep this advisory, or update/remove the “Advisory only” / “won't block CI” wording to reflect the new enforced behavior.

Copilot uses AI. Check for mistakes.
secrets: inherit

Expand All @@ -42,7 +41,7 @@ jobs:
security:
name: Security Audit
# Advisory only — does not block other jobs.
continue-on-error: true
# No "needs:" from other jobs, so failures here won't block CI.
uses: OrrisTech/.github/.github/workflows/ci-security.yml@main
Comment on lines 43 to 45
Copy link

Copilot AI Feb 20, 2026

Choose a reason for hiding this comment

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

Same issue here: with continue-on-error removed, failures in this job will still fail the workflow even if other jobs don't need it. Please either restore continue-on-error: true to keep the “Advisory only” intent, or update the comments to reflect that this audit is now a required CI gate.

Copilot uses AI. Check for mistakes.
secrets: inherit

Expand Down
Loading