fix: change skip_if_only_changed for terraform-provider-rhcs#77865
Conversation
WalkthroughTwo CI/CD configuration files were updated with modified Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes 🚥 Pre-merge checks | ✅ 10✅ Passed checks (10 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
[REHEARSALNOTIFIER]
Prior to this PR being merged, you will need to either run and acknowledge or opt to skip these rehearsals. Interacting with pj-rehearseComment: Once you are satisfied with the results of the rehearsals, comment: |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In
`@ci-operator/config/terraform-redhat/terraform-provider-rhcs/terraform-redhat-terraform-provider-rhcs-main__e2e-presubmits.yaml`:
- Line 22: The skip_if_only_changed regex currently uses alternation like
^(?:docs|\.github|\.tekton|subsystem|examples) which can overmatch prefixes
(e.g., docs-api); update each occurrence of the skip_if_only_changed pattern to
enforce directory boundaries by appending a group that requires either a slash
or end-of-string (e.g., change the alternation to
^(?:docs|\.github|\.tekton|subsystem|examples)(?:/|$)) so only those exact
directories (or their subpaths) are matched; update all instances referenced by
the diff (the skip_if_only_changed entries) accordingly.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Repository: openshift/coderabbit/.coderabbit.yaml
Review profile: CHILL
Plan: Pro Plus
Run ID: 91e42362-65e3-4c2a-9986-f9b6454b2e3a
📒 Files selected for processing (2)
ci-operator/config/terraform-redhat/terraform-provider-rhcs/terraform-redhat-terraform-provider-rhcs-main__e2e-presubmits.yamlci-operator/jobs/terraform-redhat/terraform-provider-rhcs/terraform-redhat-terraform-provider-rhcs-main-presubmits.yaml
|
/pj-rehearse ack |
|
@amandahla: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel. |
|
/lgtm |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: amandahla, marcolan018 The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
@amandahla: all tests passed! Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
This PR changes configuration for skipping jobs in terraform-provider-rhcs.
The new regex includes .tekton, .github, renovate.json, golang-ci.yml and .ci-operator.yaml
Summary by CodeRabbit