We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1b247d8 + e7b9680 commit 9d941d8Copy full SHA for 9d941d8
.github/workflows/auto-publish.yml
@@ -0,0 +1,27 @@
1
+name: Validate and Auto Publish Identity Spec
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ paths:
8
+ - identity/index.html
9
+ pull_request: {}
10
11
+jobs:
12
+ validate-and-publish:
13
+ name: Validate and Publish
14
+ runs-on: ubuntu-20.04 # only linux supported at present
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+ - uses: w3c/spec-prod@v2 # use the action
18
+ with:
19
+ SOURCE: identity/index.html
20
+ TOOLCHAIN: respec
21
+ W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN }}
22
+ W3C_WG_DECISION_URL: "https://lists.w3.org/Archives/Public/public-webrtc/2016Mar/0031.html"
23
+ W3C_NOTIFICATIONS_CC: "[email protected]"
24
+ VALIDATE_LINKS: false
25
+ W3C_BUILD_OVERRIDE: |
26
+ specStatus: WD
27
+ shortName: capture-handle-identity
0 commit comments