From a6255758107509d88b45b336440824e9aaa62ca4 Mon Sep 17 00:00:00 2001 From: Derek Schuff Date: Fri, 13 Sep 2024 10:16:44 -0700 Subject: [PATCH 1/2] Update document status input for W3C publishing to a choice value --- .github/workflows/w3c-publish.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/w3c-publish.yml b/.github/workflows/w3c-publish.yml index 7efbd3d84e..487320a426 100644 --- a/.github/workflows/w3c-publish.yml +++ b/.github/workflows/w3c-publish.yml @@ -10,7 +10,13 @@ on: inputs: w3c-status: required: true - type: string + type: choice + description: W3C Document Status + options: + - ED + - WD + - CRD + - CR jobs: publish-to-w3c-TR: From 7ece30a3f1f6adb2f1a0544ce85a55438a128b5c Mon Sep 17 00:00:00 2001 From: Derek Schuff Date: Fri, 13 Sep 2024 15:08:39 -0700 Subject: [PATCH 2/2] add comment explaining document status options --- .github/workflows/w3c-publish.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/w3c-publish.yml b/.github/workflows/w3c-publish.yml index 487320a426..cd43f17a33 100644 --- a/.github/workflows/w3c-publish.yml +++ b/.github/workflows/w3c-publish.yml @@ -5,7 +5,12 @@ on: branches: [ main ] paths: [ .github/**, document/** ] - # Allows you to run this workflow manually from the Actions tab + # Allows you to run this workflow manually from the Actions tab, gh CLI tool, + # or REST API. THe w3c-status options correspond to the valid options for + # Bikeshed's --md-status flag, 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). workflow_dispatch: inputs: w3c-status: