Skip to content

Commit

Permalink
Merge pull request #118 from w3c/autopublish
Browse files Browse the repository at this point in the history
chore: enable auto-publish
  • Loading branch information
siusin committed Sep 14, 2023
2 parents 6f503eb + 22a0617 commit c06dd30
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 34 deletions.
23 changes: 17 additions & 6 deletions .github/workflows/auto-publish.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
name: CI
name: Node CI

on:
pull_request: {}
push:
branches: ["gh-pages"]
branches:
- gh-pages
pull_request: {}

jobs:
main:
name: Build and Validate
runs-on: ubuntu-20.04
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
VALIDATE_LINKS: true
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 }}"
W3C_BUILD_OVERRIDE: |
specStatus: WD
20 changes: 20 additions & 0 deletions .github/workflows/tidy.yml
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: "Tidied up document using tidy-html5"
commit-message: "chore: tidy up index.html"
branch: html-tidy
27 changes: 0 additions & 27 deletions .travis.yml

This file was deleted.

1 change: 0 additions & 1 deletion W3CTRMANIFEST

This file was deleted.

0 comments on commit c06dd30

Please sign in to comment.