Skip to content

Commit fb65800

Browse files
k-risterclaude
andcommitted
fix: use only_modified instead of only_changed in CI workflows
The tj-actions/changed-files only_changed output does not include deleted files, causing CI to be skipped when a PR only deletes non-doc files. Switch to only_modified which correctly includes deletions. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent f8ae06c commit fb65800

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/cdm-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
changes:
1414
runs-on: ubuntu-latest
1515
outputs:
16-
only-docs: ${{ steps.filter.outputs.only_changed }}
16+
only-docs: ${{ steps.filter.outputs.only_modified }}
1717
steps:
1818
- uses: actions/checkout@v4
1919
- uses: tj-actions/changed-files@v47

.github/workflows/crucible-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
changes:
1414
runs-on: ubuntu-latest
1515
outputs:
16-
only-docs: ${{ steps.filter.outputs.only_changed }}
16+
only-docs: ${{ steps.filter.outputs.only_modified }}
1717
steps:
1818
- uses: actions/checkout@v4
1919
- uses: tj-actions/changed-files@v47

0 commit comments

Comments
 (0)