ci: skip heavy test workflows for GenerateDocs and changelog changes#4056
Merged
andygrove merged 1 commit intoapache:mainfrom Apr 24, 2026
Merged
Conversation
Add spark/src/main/scala/org/apache/comet/GenerateDocs.scala and dev/changelog/*.md to paths-ignore so edits limited to doc generation source or release changelog entries do not trigger the full build and Spark SQL test suites.
parthchandra
approved these changes
Apr 23, 2026
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.
Which issue does this PR close?
Closes #.
Rationale for this change
spark/src/main/scala/org/apache/comet/GenerateDocs.scalaonly builds documentation, anddev/changelog/*.mdfiles are release notes. Changes to either cannot affect runtime behavior, so they should not trigger the full Linux, macOS, Miri, Spark SQL, or Iceberg Spark SQL test matrices. Today, edits toGenerateDocs.scalakick off every heavy workflow.What changes are included in this PR?
Adds
spark/src/main/scala/org/apache/comet/GenerateDocs.scalaanddev/changelog/*.mdto thepaths-ignoreblock on bothpushandpull_requesttriggers for:.github/workflows/iceberg_spark_test.yml.github/workflows/miri.yml.github/workflows/pr_build_linux.yml.github/workflows/pr_build_macos.yml.github/workflows/spark_sql_test.ymldev/changelog/*.mdis already matched by the existing**.mdentry, but listing it explicitly documents the intent.How are these changes tested?
CI on this PR exercises the updated filters. The workflows above should be skipped when only
GenerateDocs.scalaor a changelog file changes.