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 25 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.

continue-on-error: true was removed, so this job is no longer “advisory only”; a failure will mark the workflow/check run as failed and may block merges if the check is required. Either restore continue-on-error: true (if it should be advisory) or update the surrounding comments to reflect the new blocking behavior and remove the “advisory” wording.

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.
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, this Security Audit job isn’t “advisory only” anymore—its failure will fail the workflow/check run and can block merges depending on required checks. Either re-add continue-on-error: true or adjust the comments to match the intended gating behavior.

Suggested change
# No "needs:" from other jobs, so failures here won't block CI.
# No "needs:" from other jobs, so failures here won't block CI.
continue-on-error: true

Copilot uses AI. Check for mistakes.
uses: OrrisTech/.github/.github/workflows/ci-security.yml@main
secrets: inherit

Expand Down
Loading