Skip to content
Open
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
16 changes: 8 additions & 8 deletions .github/workflows/iceberg_spark_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ concurrency:
cancel-in-progress: true

on:
push:
paths-ignore:
- "doc/**"
- "docs/**"
- "**.md"
- "native/core/benches/**"
- "native/spark-expr/benches/**"
- "spark/src/test/scala/org/apache/spark/sql/benchmark/**"
# push:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this mean that the tests will no longer run on the main branch?

Copy link
Contributor Author

@comphead comphead Feb 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

my understanding it should run for PR from feature to main as push changes to feature branches also triggers sync event and eventually pull_request.

UPD: check the DF and CI checks triggered by pull_request not by push

# paths-ignore:
# - "doc/**"
# - "docs/**"
# - "**.md"
# - "native/core/benches/**"
# - "native/spark-expr/benches/**"
# - "spark/src/test/scala/org/apache/spark/sql/benchmark/**"
pull_request:
paths-ignore:
- "doc/**"
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/miri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
name: Run Miri Safety Checks

on:
push:
paths-ignore:
- "doc/**"
- "docs/**"
- "**.md"
- "native/core/benches/**"
- "native/spark-expr/benches/**"
- "spark/src/test/scala/org/apache/spark/sql/benchmark/**"
# push:
# paths-ignore:
# - "doc/**"
# - "docs/**"
# - "**.md"
# - "native/core/benches/**"
# - "native/spark-expr/benches/**"
# - "spark/src/test/scala/org/apache/spark/sql/benchmark/**"
pull_request:
paths-ignore:
- "doc/**"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pr_benchmark_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ concurrency:
cancel-in-progress: true

on:
push:
paths:
- "native/core/benches/**"
- "native/spark-expr/benches/**"
- "spark/src/test/scala/org/apache/spark/sql/benchmark/**"
# push:
# paths:
# - "native/core/benches/**"
# - "native/spark-expr/benches/**"
# - "spark/src/test/scala/org/apache/spark/sql/benchmark/**"
pull_request:
paths:
- "native/core/benches/**"
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/pr_build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ concurrency:
cancel-in-progress: true

on:
push:
paths-ignore:
- "doc/**"
- "docs/**"
- "**.md"
- "native/core/benches/**"
- "native/spark-expr/benches/**"
- "spark/src/test/scala/org/apache/spark/sql/benchmark/**"
# push:
# paths-ignore:
# - "doc/**"
# - "docs/**"
# - "**.md"
# - "native/core/benches/**"
# - "native/spark-expr/benches/**"
# - "spark/src/test/scala/org/apache/spark/sql/benchmark/**"
pull_request:
paths-ignore:
- "doc/**"
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/pr_build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ concurrency:
cancel-in-progress: true

on:
push:
paths-ignore:
- "doc/**"
- "docs/**"
- "**.md"
- "native/core/benches/**"
- "native/spark-expr/benches/**"
- "spark/src/test/scala/org/apache/spark/sql/benchmark/**"
# push:
# paths-ignore:
# - "doc/**"
# - "docs/**"
# - "**.md"
# - "native/core/benches/**"
# - "native/spark-expr/benches/**"
# - "spark/src/test/scala/org/apache/spark/sql/benchmark/**"
pull_request:
paths-ignore:
- "doc/**"
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/spark_sql_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ concurrency:
cancel-in-progress: true

on:
push:
paths-ignore:
- "doc/**"
- "docs/**"
- "**.md"
- "native/core/benches/**"
- "native/spark-expr/benches/**"
- "spark/src/test/scala/org/apache/spark/sql/benchmark/**"
# push:
# paths-ignore:
# - "doc/**"
# - "docs/**"
# - "**.md"
# - "native/core/benches/**"
# - "native/spark-expr/benches/**"
# - "spark/src/test/scala/org/apache/spark/sql/benchmark/**"
pull_request:
paths-ignore:
- "doc/**"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/validate_workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ on:
paths:
- ".github/workflows/*.yml"
- ".github/workflows/*.yaml"
push:
branches:
- main
# push:
# branches:
# - main

jobs:
validate:
Expand Down
Loading