-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into update-artwork
- Loading branch information
Showing
9 changed files
with
726 additions
and
398 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,36 @@ | ||
# Workflow based on the main w3c/spec-prod action example: | ||
# https://github.com/w3c/spec-prod/#basic-usage | ||
|
||
name: Build, Validate, Deploy and Publish | ||
|
||
on: | ||
# Worflow runs on pull requests where it makes sure that the spec can still be | ||
# generated, that markup is valid and that there are no broken links, as | ||
# well as on pushes to the default branch where it also deploys the generated | ||
# spec to the gh-pages branch and publishes the result to /TR. | ||
# The "workflow_dispatch" hook allows admins to also trigger the workflow | ||
# manually from GitHub's UI. | ||
pull_request: {} | ||
push: | ||
branches: [main] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
main: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
# See doc at https://github.com/actions/checkout#checkout-v2 | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
# See doc at https://github.com/w3c/spec-prod/#spec-prod | ||
# The action only deploys the generated spec to the gh-pages branch when | ||
# the workflow was triggered by a push to the default branch. | ||
- name: Build and validate index.html, push to gh-pages branch if needed | ||
uses: w3c/spec-prod@v2 | ||
with: | ||
GH_PAGES_BRANCH: gh-pages | ||
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN }} | ||
W3C_WG_DECISION_URL: https://github.com/w3c/media-wg/issues/27 | ||
W3C_BUILD_OVERRIDE: | | ||
status: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Tidy document | ||
on: | ||
workflow_dispatch: {} | ||
push: | ||
branches: | ||
- gh-pages | ||
paths: | ||
- index.html | ||
|
||
jobs: | ||
tidy: | ||
name: Tidy up | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: make | ||
- uses: peter-evans/create-pull-request@v6 | ||
with: | ||
title: "Tidied up source" | ||
commit-message: "chore(index.bs): tidy up" | ||
branch: 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Media Session Standard | ||
# Media Session API | ||
|
||
https://w3c.github.io/mediasession/ | ||
|
||
|
Binary file not shown.
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
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
Oops, something went wrong.