Skip to content

Commit c7c038d

Browse files
authored
Update document status input for W3C publishing to a choice value (WebAssembly#1803)
The w3c-status options correspond to the valid options for Bikeshed's --md-status flag (i.e. Status metadata, https://speced.github.io/bikeshed/#metadata), and refer to the W3C rec-track document stages described in https://www.w3.org/policies/process/#maturity-stages (Editor's Draft, Working Draft, Candidiate Recommendation Draft, and Candidate Recommendation Snapshot).
1 parent cc7bb73 commit c7c038d

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/w3c-publish.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,23 @@ on:
55
branches: [ main ]
66
paths: [ .github/**, document/** ]
77

8-
# Allows you to run this workflow manually from the Actions tab
8+
# Allows you to run this workflow manually from the Actions tab, gh CLI tool,
9+
# or REST API. THe w3c-status options correspond to the valid options for
10+
# Bikeshed's --md-status flag, and refer to the W3C rec-track document
11+
# stages described in https://www.w3.org/policies/process/#maturity-stages
12+
# (Editor's Draft, Working Draft, Candidiate Recommendation Draft, and
13+
# Candidate Recommendation Snapshot).
914
workflow_dispatch:
1015
inputs:
1116
w3c-status:
1217
required: true
13-
type: string
18+
type: choice
19+
description: W3C Document Status
20+
options:
21+
- ED
22+
- WD
23+
- CRD
24+
- CR
1425

1526
jobs:
1627
publish-to-w3c-TR:

0 commit comments

Comments
 (0)