Skip to content
Merged
Show file tree
Hide file tree
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: 3 additions & 2 deletions .github/workflows/crap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ name: "CRAP"
# branch-protection settings. To soften it back to report-only, drop the
# "Enforce CRAP threshold" step — the sticky comment keeps working either way.
on:
# No branch filter: a stacked PR (a feature branch as base) must run this
# gate too. With `branches: [main]` here, retargeting a PR onto its
# parent branch silently switched every Rust gate off; see go.yml.
pull_request:
branches:
- main
paths:
- "packages/**"
- "Cargo.toml"
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/miri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ name: "Miri"
# and `protected` is where the only unsafe lives. Expand the matrix if other
# crates grow pure-Rust `unsafe`.
on:
# No branch filter: a stacked PR (a feature branch as base) must run this
# gate too. With `branches: [main]` here, retargeting a PR onto its
# parent branch silently switched every Rust gate off; see go.yml.
pull_request:
branches:
- main
paths:
- "packages/protected/**"
- ".github/workflows/miri.yml"
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/mutants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ name: "Mutants"
# step; the sticky comment keeps working either way. To block merges, mark this
# check ("🧬 Mutants gate") as required in the repo's branch-protection settings.
on:
# No branch filter: a stacked PR (a feature branch as base) must run this
# gate too. With `branches: [main]` here, retargeting a PR onto its
# parent branch silently switched every Rust gate off; see go.yml.
pull_request:
branches:
- main
paths:
- "packages/**"
- "Cargo.toml"
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ on:
push:
branches:
- main
# No branch filter: a stacked PR (a feature branch as base) must run this
# gate too. With `branches: [main]` here, retargeting a PR onto its
# parent branch silently switched every Rust gate off; see go.yml.
Comment on lines +6 to +8
pull_request:
branches:
- main
workflow_dispatch:

defaults:
Expand Down