Exclude text non-doc files from triggering full CI runs#64584
Merged
potiuk merged 1 commit intoapache:mainfrom Apr 1, 2026
Merged
Exclude text non-doc files from triggering full CI runs#64584potiuk merged 1 commit intoapache:mainfrom
potiuk merged 1 commit intoapache:mainfrom
Conversation
Changes to .txt and .md files that are not part of the doc build should not trigger the full test suite. This adds a new TEXT_NON_DOC_FILES file group to selective checks and an only_text_non_doc_files_changed property so these files are subtracted from the "remaining files" set, avoiding unnecessary CI runs for text-only, non-doc-build changes. Also removes the overly broad `^dev/.*` pattern from the test-always file group since dev/ changes should be evaluated by more specific file group patterns.
bugraoz93
approved these changes
Apr 1, 2026
jscheffl
approved these changes
Apr 1, 2026
Member
Author
|
Transient / UI issues only. |
github-actions bot
pushed a commit
that referenced
this pull request
Apr 1, 2026
…uns (#64584) Changes to .txt and .md files that are not part of the doc build should not trigger the full test suite. This adds a new TEXT_NON_DOC_FILES file group to selective checks and an only_text_non_doc_files_changed property so these files are subtracted from the "remaining files" set, avoiding unnecessary CI runs for text-only, non-doc-build changes. Also removes the overly broad `^dev/.*` pattern from the test-always file group since dev/ changes should be evaluated by more specific file group patterns. (cherry picked from commit aca2d59) Co-authored-by: Jarek Potiuk <jarek@potiuk.com>
Contributor
Backport successfully created: v3-2-testNote: As of Merging PRs targeted for Airflow 3.X In matter of doubt please ask in #release-management Slack channel.
|
github-actions bot
pushed a commit
to aws-mwaa/upstream-to-airflow
that referenced
this pull request
Apr 1, 2026
…uns (apache#64584) Changes to .txt and .md files that are not part of the doc build should not trigger the full test suite. This adds a new TEXT_NON_DOC_FILES file group to selective checks and an only_text_non_doc_files_changed property so these files are subtracted from the "remaining files" set, avoiding unnecessary CI runs for text-only, non-doc-build changes. Also removes the overly broad `^dev/.*` pattern from the test-always file group since dev/ changes should be evaluated by more specific file group patterns. (cherry picked from commit aca2d59) Co-authored-by: Jarek Potiuk <jarek@potiuk.com>
Subham-KRLX
pushed a commit
to Subham-KRLX/airflow
that referenced
this pull request
Apr 3, 2026
…64584) Changes to .txt and .md files that are not part of the doc build should not trigger the full test suite. This adds a new TEXT_NON_DOC_FILES file group to selective checks and an only_text_non_doc_files_changed property so these files are subtracted from the "remaining files" set, avoiding unnecessary CI runs for text-only, non-doc-build changes. Also removes the overly broad `^dev/.*` pattern from the test-always file group since dev/ changes should be evaluated by more specific file group patterns.
potiuk
added a commit
to potiuk/airflow
that referenced
this pull request
Apr 6, 2026
…uns (apache#64584) Changes to .txt and .md files that are not part of the doc build should not trigger the full test suite. This adds a new TEXT_NON_DOC_FILES file group to selective checks and an only_text_non_doc_files_changed property so these files are subtracted from the "remaining files" set, avoiding unnecessary CI runs for text-only, non-doc-build changes. Also removes the overly broad `^dev/.*` pattern from the test-always file group since dev/ changes should be evaluated by more specific file group patterns. (cherry picked from commit aca2d59) Co-authored-by: Jarek Potiuk <jarek@potiuk.com>
1 task
potiuk
added a commit
that referenced
this pull request
Apr 6, 2026
…uns (#64584) (#64809) Changes to .txt and .md files that are not part of the doc build should not trigger the full test suite. This adds a new TEXT_NON_DOC_FILES file group to selective checks and an only_text_non_doc_files_changed property so these files are subtracted from the "remaining files" set, avoiding unnecessary CI runs for text-only, non-doc-build changes. Also removes the overly broad `^dev/.*` pattern from the test-always file group since dev/ changes should be evaluated by more specific file group patterns. (cherry picked from commit aca2d59)
vatsrahul1001
pushed a commit
that referenced
this pull request
Apr 8, 2026
…uns (#64584) (#64809) Changes to .txt and .md files that are not part of the doc build should not trigger the full test suite. This adds a new TEXT_NON_DOC_FILES file group to selective checks and an only_text_non_doc_files_changed property so these files are subtracted from the "remaining files" set, avoiding unnecessary CI runs for text-only, non-doc-build changes. Also removes the overly broad `^dev/.*` pattern from the test-always file group since dev/ changes should be evaluated by more specific file group patterns. (cherry picked from commit aca2d59)
vatsrahul1001
pushed a commit
that referenced
this pull request
Apr 15, 2026
…uns (#64584) (#64809) Changes to .txt and .md files that are not part of the doc build should not trigger the full test suite. This adds a new TEXT_NON_DOC_FILES file group to selective checks and an only_text_non_doc_files_changed property so these files are subtracted from the "remaining files" set, avoiding unnecessary CI runs for text-only, non-doc-build changes. Also removes the overly broad `^dev/.*` pattern from the test-always file group since dev/ changes should be evaluated by more specific file group patterns. (cherry picked from commit aca2d59)
vatsrahul1001
pushed a commit
that referenced
this pull request
Apr 15, 2026
…uns (#64584) (#64809) Changes to .txt and .md files that are not part of the doc build should not trigger the full test suite. This adds a new TEXT_NON_DOC_FILES file group to selective checks and an only_text_non_doc_files_changed property so these files are subtracted from the "remaining files" set, avoiding unnecessary CI runs for text-only, non-doc-build changes. Also removes the overly broad `^dev/.*` pattern from the test-always file group since dev/ changes should be evaluated by more specific file group patterns. (cherry picked from commit aca2d59)
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.
Changes to
.txtand.mdfiles that are not part of the doc build should nottrigger the full test suite. This is an optimization for CI runs that are triggered
by text, non-doc-build changes (e.g. editing
INTHEWILD.md,README.md, or.txtfiles).Changes:
TEXT_NON_DOC_FILESfile group matching*.txtand*.mdfilesonly_text_non_doc_files_changedproperty toSelectiveChecksnon-doc files changed
trigger tests through the catch-all path
^dev/.*pattern from the test-always file groupsince dev/ changes should be evaluated by more specific file group patterns
Was generative AI tooling used to co-author this PR?
Generated-by: Claude Code (Claude Opus 4.6) following the guidelines