ci: scope workflow triggers to skip docs-only changes#2042
Merged
Conversation
- codeflash-optimize.yaml: replace paths: ['**'] wildcard with targeted filters - mypy.yml: add path filters (was firing on every PR/push including docs) - prek.yaml: add path filters (was firing on every PR) - unit-tests.yaml: add path filters (was firing on every PR/push) Docs-only, README, experiment, and LICENSE changes no longer trigger these workflows. Saves ~20 workflow runs per docs-only PR.
Editing the workflow config shouldn't trigger a full optimization run.
Editing a workflow YAML file should not trigger that same workflow to run. Removes .github/workflows/<file> from its own paths filter in mypy.yml, prek.yaml, and unit-tests.yaml.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
codeflash-optimize.yaml: Replacepaths: ['**']wildcard with targeted filters (same bug fixed in ci: replace wildcard path triggers on E2E tests #2025, missed this workflow)mypy.yml: Add path filters — was running on every PR/push including docs-only changesprek.yaml: Add path filters — was running on every PRunit-tests.yaml: Add path filters — was running on every PR/push (7-job matrix × every docs PR = waste)All four now only trigger when source code, tests, dependencies, or their own workflow file changes.
Test plan
codeflash/**