Skip to content

Commit aba3c8f

Browse files
committed
ci(workflows): clarify dispatch UI text
Three small UI tweaks for the Actions panel display: - provenance.yml: `name: πŸ“¦ Publish` β†’ `πŸ“¦ Publish to npm`. The workflow has always published to npm; the prior name read as "publish what?" in the Actions sidebar. - provenance.yml: dry-run input description shortened from a full paragraph to `Dry run (--dry-run on npm publish, default: true)`. The previous text wrapped to 3+ lines in the dispatch popover and buried the actual default behavior. - weekly-update.yml: `name: πŸ”„ Weekly Dependency Update` β†’ `πŸ”„ Weekly Update`. The workflow has grown beyond just dep updates (lockstep sweeps, security-advisory triage, cascade housekeeping); the broader name reflects the actual scope. No behavior change β€” pure display strings.
1 parent 5f60f15 commit aba3c8f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

β€Ž.github/workflows/provenance.ymlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: πŸ“¦ Publish
1+
name: πŸ“¦ Publish to npm
22

33
# Dependencies:
44
# - SocketDev/socket-registry/.github/workflows/provenance.yml
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88
inputs:
99
dry-run:
10-
description: 'Stage everything but pass --dry-run to npm publish; nothing reaches the registry. Default: true β€” uncheck to opt into a real publish.'
10+
description: 'Dry run (--dry-run on npm publish, default: true)'
1111
required: false
1212
default: true
1313
type: boolean

β€Ž.github/workflows/weekly-update.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: πŸ”„ Weekly Dependency Update
1+
name: πŸ”„ Weekly Update
22

33
on:
44
schedule:

0 commit comments

Comments
Β (0)