Refactor gh action worklfows#4631
Merged
Merged
Conversation
✅ Deploy Preview for kptdocs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
3a8cd0b to
6e2d69f
Compare
liamfallon
previously approved these changes
Jul 9, 2026
aravindtga
reviewed
Jul 9, 2026
mozesl-nokia
reviewed
Jul 9, 2026
mozesl-nokia
previously approved these changes
Jul 9, 2026
Signed-off-by: Fiachra Corcoran <fiachra.corcoran@est.tech>
Signed-off-by: Fiachra Corcoran <fiachra.corcoran@est.tech>
Signed-off-by: Fiachra Corcoran <fiachra.corcoran@est.tech>
Signed-off-by: Fiachra Corcoran <fiachra.corcoran@est.tech>
e008b1c to
9f50c01
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
This PR refactors the repository’s GitHub Actions workflows to be compatible with GitHub rulesets that require specific checks, replacing workflow-level paths-ignore with per-job conditional execution plus “gate” jobs that always report a final required status.
Changes:
- Added path-based change detection jobs (
dorny/paths-filter) and “gate” jobs to ensure required checks always complete with a status. - Introduced a new
docs.ymlworkflow and removed older redundant/broken verification workflows. - Updated Live E2E / Live Apply workflows to use K8s matrices and conditional execution; added GOPATH env to
release-api.yml.
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/go.yml | Adds change detection and a gate job for required “go” status; refactors Go CI to run conditionally. |
| .github/workflows/docs.yml | New docs verification workflow with change detection and a required “docs” gate. |
| .github/workflows/e2eEnvironment.yml | Adds change detection plus gate job for required “live-e2e” status; keeps K8s matrix. |
| .github/workflows/live-e2e.yml | Adds change detection plus gate job for required “live-apply” status; adds K8s matrix with pinned kind node images. |
| .github/workflows/release-api.yml | Adds workflow-level GOPATH env for API release builds. |
| .github/workflows/verifyDocumentation.yml | Deleted (replaced by docs.yml). |
| .github/workflows/verifyContent.yml | Deleted (stated redundant/broken). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Signed-off-by: Fiachra Corcoran <fiachra.corcoran@est.tech>
liamfallon
approved these changes
Jul 9, 2026
aravindtga
approved these changes
Jul 9, 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.
CI Workflow Refactor
Refactored GitHub Actions workflows for ruleset compatibility. Removed workflow-level
paths-ignoreand added gate jobs for proper status reporting.Changes
verifyContent.yml,verifyDocumentation.yml(redundant/broken).Behavior
GitHub Ruleset Setup
Require these 4 checks:
godocslive-e2elive-applyValidation
act✓AI disclosure: Fully verified all code and workflows.