Skip to content

Commit 38ef724

Browse files
committed
Convert Draft to Bikeshed
0 parents  commit 38ef724

8 files changed

Lines changed: 701 additions & 0 deletions

File tree

.github/workflows/auto-publish.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Create a file called .github/workflows/auto-publish.yml
2+
name: CI
3+
on:
4+
pull_request: {}
5+
push:
6+
branches: [main]
7+
jobs:
8+
main:
9+
name: Build, Validate and Deploy
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
steps:
14+
- uses: actions/checkout@v5
15+
- uses: w3c/spec-prod@v2
16+
with:
17+
GH_PAGES_BRANCH: gh-pages

.github/workflows/pr.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: PR Validation
2+
on:
3+
pull_request: {}
4+
jobs:
5+
main:
6+
name: Build and Validate
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v5
10+
- uses: w3c/spec-prod@v2

.pr-preview.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"src_file": "index.bs",
3+
"type": "bikeshed",
4+
"params": {
5+
"force": 1
6+
}
7+
}

LICENSE.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
All documents in this Repository are licensed by contributors
2+
under the
3+
[W3C Software and Document License](https://www.w3.org/Consortium/Legal/copyright-software).

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Security Considerations
2+
3+
This shall become a pratical for developers using WebViews on how to securely use them.

build-remote.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
curl https://www.w3.org/publications/spec-generator/ -F file=@security-for-webviews.bs -F type=bikeshed-spec -F die-on=nothing > index.html

0 commit comments

Comments
 (0)