-
Notifications
You must be signed in to change notification settings - Fork 0
🔄 synced file(s) with OrrisTech/.github #2
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 | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -23,6 +23,9 @@ concurrency: | |||||||||
| 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 | ||||||||||
| uses: OrrisTech/.github/.github/workflows/ci-lint-typecheck.yml@main | ||||||||||
| secrets: inherit | ||||||||||
|
|
||||||||||
|
|
@@ -33,12 +36,13 @@ jobs: | |||||||||
|
|
||||||||||
| build: | ||||||||||
| name: Build | ||||||||||
| needs: [lint-typecheck] | ||||||||||
| uses: OrrisTech/.github/.github/workflows/ci-build.yml@main | ||||||||||
| secrets: inherit | ||||||||||
|
|
||||||||||
| security: | ||||||||||
| name: Security Audit | ||||||||||
| # Advisory only — does not block other jobs. | ||||||||||
| continue-on-error: true | ||||||||||
|
Comment on lines
+44
to
+45
|
||||||||||
| # Advisory only — does not block other jobs. | |
| continue-on-error: true | |
| # Advisory only on pull requests — blocks on pushes to main/master. | |
| continue-on-error: ${{ github.event_name == 'pull_request' }} |
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.
continue-on-error: truemakes lint/typecheck failures non-blocking for both PRs and pushes to main/master. If the intent is only to avoid blocking PRs while existing lint debt is worked down, consider making this conditional (e.g., allow failures on pull_request but enforce on push to default branches) so main stays protected.