Skip to content

Commit b1723e5

Browse files
compheadalamb
andauthored
chore: run extended suite on PRs for critical areas (#18088)
## Which issue does this PR close? <!-- We generally require a GitHub issue to be filed for all bug fixes and enhancements and this helps us generate change logs for our releases. You can link an issue to this PR using the GitHub syntax. For example `Closes #123` indicates that this PR will close issue #123. --> - Closes #. Related to #18084 ## Rationale for this change Run extended suite on PRs for critical areas, to avoid post merge bugfixing <!-- Why are you proposing this change? If this is already explained clearly in the issue then this section is not needed. Explaining clearly why changes are proposed helps reviewers understand your changes and offer better suggestions for fixes. --> ## What changes are included in this PR? <!-- There is no need to duplicate the description in the issue here but it is sometimes worth providing a summary of the individual changes in this PR. --> ## Are these changes tested? <!-- We typically require tests for all PRs in order to: 1. Prevent the code from being accidentally broken by subsequent changes 2. Serve as another way to document the expected behavior of the code If tests are not included in your PR, please explain why (for example, are they covered by existing tests)? --> ## Are there any user-facing changes? <!-- If there are user-facing changes then we may require documentation to be updated before approving the PR. --> <!-- If there are any breaking changes to public APIs, please add the `api change` label. --> --------- Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
1 parent 9bfa2ae commit b1723e5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/extended.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@ on:
3636
# it is not expected to have many changes in these branches,
3737
# so running extended tests is not a burden
3838
- 'branch-*'
39+
# Also run for changes to some critical areas that are most likely
40+
# to trigger errors in extended tests
41+
pull_request:
42+
branches: [ '**' ]
43+
paths:
44+
- 'datafusion/physical*/**/*.rs'
45+
- 'datafusion/expr*/**/*.rs'
46+
- 'datafusion/optimizer/**/*.rs'
3947
workflow_dispatch:
4048
inputs:
4149
pr_number:

0 commit comments

Comments
 (0)