feat: add Triglav as end-to-end test orchestrator#148
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR introduces Triglav as the centralized end-to-end (E2E) test orchestrator for this action by adding a manual caller workflow and updating documentation and workflow permissions to support the org-level reusable workflows.
Changes:
- Added a repository-local manual workflow to trigger the centralized Triglav E2E workflow.
- Updated multiple workflows’
GITHUB_TOKENpermissions (notably addingissues: writeand expanding some scopes). - Documented the new E2E validation flow in
README.md.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/auto-pull-request-create.yml |
Expands workflow token permissions for the reusable PR-creation workflow. |
.github/workflows/auto-release-create.yml |
Expands workflow token permissions for the reusable release workflow. |
.github/workflows/manual-e2e-validate.yml |
Adds a manual dispatcher that calls the centralized Triglav E2E workflow. |
.github/workflows/manual-release-branch-prepare.yml |
Expands workflow token permissions for the reusable release-branch prepare workflow. |
README.md |
Updates checkout version in examples and documents the centralized E2E validation approach. |
Comments suppressed due to low confidence (1)
.github/workflows/manual-e2e-validate.yml:30
secrets: inheritforwards all repository/environment secrets to the called workflow. If the E2E workflow only needs a subset, pass explicit secrets instead to reduce blast radius (especially when combined with external reusable workflows).
mode: ${{ inputs.mode }}
image_tag: ${{ inputs.image_tag }}
secrets: inherit
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+25
to
+27
| e2e: | ||
| uses: devops-infra/triglav/.github/workflows/e2e-action-template-action.yml@master | ||
| with: |
Comment on lines
11
to
16
| permissions: | ||
| contents: read | ||
| contents: write | ||
| packages: write | ||
| pull-requests: write | ||
| issues: write | ||
|
|
Comment on lines
21
to
+25
| permissions: | ||
| contents: write | ||
| packages: write | ||
| pull-requests: read | ||
| pull-requests: write | ||
| issues: write |
Comment on lines
26
to
+30
| permissions: | ||
| contents: write | ||
| packages: write | ||
| pull-requests: write | ||
| issues: write |
ChristophShyper
approved these changes
May 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.
📝 Brief description
feat: add Triglav as end-to-end test orchestrator
💻 Commits
feat: add Triglav as end-to-end test orchestrator
📁 Modified files
.github/workflows/auto-pull-request-create.yml | 3 +-
.github/workflows/auto-release-create.yml | 3 +-
.github/workflows/manual-e2e-validate.yml (new) | 30 +++++++++++++++++++
.../workflows/manual-release-branch-prepare.yml | 1 +
README.md | 34 ++++++++++++++++++++--
5 files changed, 66 insertions(+), 5 deletions(-)
Check CONTRIBUTING.md and CODE_OF_CONDUCT.md for more information