feat(ci): advanced triggers rollout for unit and integration tests#22054
Merged
feat(ci): advanced triggers rollout for unit and integration tests#22054
Conversation
This was referenced Apr 16, 2026
Contributor
|
✅ No conflicts with other open PRs targeting |
Contributor
There was a problem hiding this comment.
Pull request overview
Risk Rating: LOW — adds non-gating CI steps (with continue-on-error) but still touches critical workflows and can impact rollout validation quality.
This PR introduces the smartcontractkit/.github/actions/advanced-triggers step into existing CI workflows to begin a rollout phase where trigger behavior can be observed without changing current job gating.
Changes:
- Add an
advanced-triggersstep (rollout-only) toci-core’s change-detection job. - Add an
advanced-triggersstep (rollout-only) tointegration-tests’ path-checking job.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 5 comments.
| File | Description |
|---|---|
| .github/workflows/ci-core.yml | Adds advanced-triggers trigger evaluation alongside existing dorny/paths-filter logic. |
| .github/workflows/integration-tests.yml | Adds advanced-triggers trigger evaluation alongside existing dorny/paths-filter logic. |
|
chainchad
approved these changes
Apr 17, 2026
kalverra
approved these changes
Apr 24, 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.





This adds an
advanced-triggersstep which in the future will be used to gate jobs more effectively. The outputs of this are currently unused so we can validate the behaviour while still relying on the known-working existing conditional logic.Utilizes
advanced-triggers.Changes
advanced-triggersstep to bothci-coreandintegration-testsMotivation
This provides more granular control for job-level run conditions based on file changes.
Notes
This replaces #21686, #21685.
DX-3534