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
10 changes: 10 additions & 0 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,18 @@ concurrency:
on:
push:
branches: [main]
paths-ignore:
- '**/*.md'
- 'safety/**'
- 'scripts/mythos/**'
- 'tools/*.py'
pull_request:
branches: [main]
paths-ignore:
- '**/*.md'
- 'safety/**'
- 'scripts/mythos/**'
- 'tools/*.py'

env:
CARGO_TERM_COLOR: always
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,23 @@ concurrency:
on:
push:
branches: [main]
# Skip CI on docs/safety-only changes — they don't affect code
# behavior. Reduces meld's draw on the shared smithy rust-cpu
# fleet. Conservative exclusion: anything that could affect
# cargo build/test/clippy/fmt outputs (.rs, Cargo.{toml,lock},
# workflows themselves) still triggers.
paths-ignore:
- '**/*.md'
- 'safety/**'
- 'scripts/mythos/**'
- 'tools/*.py'
pull_request:
branches: [main]
paths-ignore:
- '**/*.md'
- 'safety/**'
- 'scripts/mythos/**'
- 'tools/*.py'

env:
CARGO_TERM_COLOR: always
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,18 @@ concurrency:
on:
push:
branches: [main]
paths-ignore:
- '**/*.md'
- 'safety/**'
- 'scripts/mythos/**'
- 'tools/*.py'
pull_request:
branches: [main]
paths-ignore:
- '**/*.md'
- 'safety/**'
- 'scripts/mythos/**'
- 'tools/*.py'

env:
CARGO_TERM_COLOR: always
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

### Changed

- **CI workflows now skip on docs/safety-only changes**
(`.github/workflows/{bench,fuzz,ci}.yml`). Adds conservative
`paths-ignore` filters to bench, fuzz, and ci workflows: PRs that
only edit Markdown, `safety/`, `scripts/mythos/`, or
`tools/*.py` skip the rust-cpu-hungry jobs (~9 jobs saved per
docs-only PR). The LS-N gate, mythos-gate, and mythos-auto
workflows are untouched — they need to keep firing on those very
paths (`safety/stpa/loss-scenarios.yaml` is what the LS-N gate
reads). Substantive code PRs are unaffected. Pulls meld's
footprint on the shared smithy fleet down without losing
regression signal on real changes.

### Fixed

- **LS-A-8 regression coverage** (`meld-core/src/adapter/fact.rs`).
Expand Down
Loading