Skip to content
Open
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
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,31 @@
name: CI

# Documentation never reaches a gate, so it never starts one. `paths-ignore`
# means the workflow does not run at all for a prose change -- no runner, no
# queue, no wait.
#
# That is only safe because `main`'s protection no longer requires branches to
# be up to date (`strict: false`). With `strict` on, a required check that
# never reports blocks the pull request permanently, which is how a five-line
# documentation change came to take twenty minutes: every merge invalidated
# every other branch, each needing a fresh run before it could merge, one at a
# time.
#
# The path list is deliberately conservative. Anything not named here still
# runs everything: a new top-level file nobody thought about gets the gates
# rather than a free pass.
on:
push:
branches: [main]
paths-ignore:
- 'docs/**'
- '**/*.md'
- '.github/ISSUE_TEMPLATE/**'
pull_request:
paths-ignore:
- 'docs/**'
- '**/*.md'
- '.github/ISSUE_TEMPLATE/**'
workflow_dispatch:

concurrency:
Expand Down
Loading