forked from w3c/payment-method-basic-card
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: enable auto-pub via GH actions (w3c#91)
- Loading branch information
1 parent
b9e0517
commit aa90049
Showing
6 changed files
with
106 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# See https://w3c.github.io/spec-prod/ | ||
name: Node CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- gh-pages | ||
pull_request: {} | ||
|
||
jobs: | ||
validate-and-publish: | ||
name: Validate and Publish | ||
runs-on: ubuntu-latest # only linux supported at present | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: w3c/spec-prod@v2 | ||
with: | ||
TOOLCHAIN: respec | ||
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN }} | ||
W3C_WG_DECISION_URL: "https://www.w3.org/2016/04/14-wpwg-minutes.html#item02" | ||
W3C_NOTIFICATIONS_CC: "${{ secrets.CC }}" | ||
W3C_BUILD_OVERRIDE: | | ||
shortName: payment-method-basic-card | ||
specStatus: NOTE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Tidy document | ||
on: | ||
workflow_dispatch: {} | ||
push: | ||
branches: | ||
- gh-pages | ||
|
||
jobs: | ||
tidy: | ||
name: Tidy up | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: brew install tidy-html5 | ||
- run: tidy -config tidyconfig.txt -o index.html index.html | ||
- uses: peter-evans/create-pull-request@v3 | ||
with: | ||
title: "chore(tidy): tidy up document" | ||
commit-message: "Tidied up document using tidy-html5" | ||
branch: html-tidy |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Node CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- gh-pages | ||
pull_request: {} | ||
|
||
jobs: | ||
validate-and-publish: | ||
name: Validate and Publish | ||
runs-on: ubuntu-latest # only linux supported at present | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: sidvishnoi/spec-prod@v1 | ||
with: | ||
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN }} | ||
W3C_WG_DECISION_URL: "https://lists.w3.org/Archives/Public/public-webapps/2014JulSep/0627.html" | ||
W3C_NOTIFICATIONS_CC: "${{ secrets.CC }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# .github/workflows/pr-push.yml | ||
name: CI | ||
on: | ||
pull_request: {} | ||
push: | ||
branches: [main] | ||
jobs: | ||
main: | ||
name: Build, Validate and Deploy | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: w3c/spec-prod@v2 | ||
with: | ||
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN }} | ||
# Replace following with appropriate value. See options.md for details. | ||
W3C_WG_DECISION_URL: https://lists.w3.org/Archives/Public/public-group/2014JulSep/1234.html | ||
# Usually, you want the following set too... | ||
W3C_BUILD_OVERRIDE: | | ||
shortName: your-specs-shortname-here | ||
specStatus: WD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters