ci(e2e): drop the doubled E2E prefix from the published check names #481
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/BUNYIP-478-e2e-check-name-dedup"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What
Fixes the doubled E2E check names introduced by #477. Forgejo publishes an Actions check as
<workflow name> / <job name>, so puttingE2E /in the job name too produced:E2E / E2E / deployment(workflowE2E+ jobE2E / deployment)E2E PR gate / E2E / PR gate(workflowE2E PR gate+ jobE2E / PR gate)This sets both workflows'
name:toE2Eand the job names to just the second segment:name:name:E2EdeploymentE2E / deploymentE2EPR gateE2E / PR gateWhy (BUNYIP-478)
A single
E2E /*branch-protection pattern matches both, and the names read as intended. The two workflow files now share theE2Edisplay name; their file paths, triggers (push/dispatch vs pull_request), and job names keep them distinct.Scope
Names only. Triggers, job ids (
e2e,e2e-pr),env:secret scope, and concurrency groups unchanged.check-workflow-secrets.shandcheck-runner-labels.shboth pass.Branch-protection reminder: require
E2E / PR gate(or patternE2E /*) on pull requests once this merges.#BUNYIP-478