Skip to content

Commit aa76e28

Browse files
ptrdomclaude
andcommitted
Rename Release run workflow to _release-run
The reusable release pipeline always shows in the Actions sidebar (no way to hide a workflow_call-only file). Rename the file to _release-run.yml and drop its name: so GitHub displays the file path, making clear it is an internal reusable workflow rather than something meant to be launched on its own. Update caller references in release.yml. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent de4af9f commit aa76e28

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
name: Release run
21
# Reusable pipeline shared by every run kind, called from release.yml. All the
32
# kind-specific behaviour is gated on inputs.kind so the logic lives in one
43
# place; release.yml decides the kind and selects which caller job runs.

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ permissions: {}
2020
jobs:
2121
# Decide once what this run does, then fan out to one job per kind so each
2222
# appears as its own job in the UI and gets least-privilege permissions.
23-
# The shared pipeline lives in _run.yml; the jobs below only select it.
23+
# The shared pipeline lives in _release-run.yml; the jobs below only select it.
2424
# RELEASE - workflow_dispatch, first attempt: bump, tag, push, publish.
2525
# RELEASE_RETRY - workflow_dispatch whose tag is already on origin from a
2626
# prior attempt: skip bump/push, republish the tag (so a
@@ -71,7 +71,7 @@ jobs:
7171
if: needs.determine.outputs.kind == 'RELEASE'
7272
permissions:
7373
contents: read
74-
uses: ./.github/workflows/_run.yml
74+
uses: ./.github/workflows/_release-run.yml
7575
with:
7676
kind: RELEASE
7777
version: ${{ inputs.version }}
@@ -81,7 +81,7 @@ jobs:
8181
if: needs.determine.outputs.kind == 'RELEASE_RETRY'
8282
permissions:
8383
contents: read
84-
uses: ./.github/workflows/_run.yml
84+
uses: ./.github/workflows/_release-run.yml
8585
with:
8686
kind: RELEASE_RETRY
8787
version: ${{ inputs.version }}
@@ -91,7 +91,7 @@ jobs:
9191
if: needs.determine.outputs.kind == 'DRY_RUN'
9292
permissions:
9393
contents: read
94-
uses: ./.github/workflows/_run.yml
94+
uses: ./.github/workflows/_release-run.yml
9595
with:
9696
kind: DRY_RUN
9797
secrets: inherit
@@ -100,7 +100,7 @@ jobs:
100100
if: needs.determine.outputs.kind == 'SNAPSHOT'
101101
permissions:
102102
contents: read
103-
uses: ./.github/workflows/_run.yml
103+
uses: ./.github/workflows/_release-run.yml
104104
with:
105105
kind: SNAPSHOT
106106
secrets: inherit

0 commit comments

Comments
 (0)