Skip to content

Commit 7df40df

Browse files
committed
add css-2026
1 parent c2a5f2e commit 7df40df

File tree

3 files changed

+82
-0
lines changed

3 files changed

+82
-0
lines changed

.github/generate-auto-publish-workflows.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,14 @@
4141
"shortname": "css-fonts-5",
4242
"publicationStatus": "WD",
4343
},
44+
{
45+
"shortname": "css-2026",
46+
"publicationStatus": "NOTE",
47+
},
48+
{
49+
"shortname": "css-2027",
50+
"publicationStatus": "NOTE",
51+
},
4452
]
4553

4654
# -----------------------------------------------------------------------------

.github/workflows/css-2026.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
######################################################################
2+
# IMPORTANT: Do not edit this file directly!
3+
#
4+
# This workflow was automatically generated through the
5+
# generate-auto-publish-workflows.py script. To update the workflow,
6+
# make changes to the template file and run the script again.
7+
######################################################################
8+
9+
name: Publish css-2026 on /TR
10+
11+
on:
12+
pull_request:
13+
paths:
14+
- "css-2026/**"
15+
push:
16+
branches: [main]
17+
paths:
18+
- "css-2026/**"
19+
workflow_dispatch:
20+
21+
jobs:
22+
publish-TR-css-2026:
23+
name: Publish css-2026
24+
runs-on: ubuntu-latest
25+
steps:
26+
- uses: actions/checkout@v6
27+
- uses: w3c/spec-prod@v2
28+
with:
29+
TOOLCHAIN: bikeshed
30+
SOURCE: css-2026/Overview.bs
31+
DESTINATION: css-2026/index.html
32+
BUILD_FAIL_ON: warning
33+
VALIDATE_MARKUP: false
34+
W3C_ECHIDNA_TOKEN: ${{ secrets.TR_TOKEN_CSS_2026 }}
35+
W3C_WG_DECISION_URL: https://www.w3.org/2025/08/21-css-minutes.html#fc30
36+
W3C_BUILD_OVERRIDE: |
37+
status: NOTE

.github/workflows/css-2027.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
######################################################################
2+
# IMPORTANT: Do not edit this file directly!
3+
#
4+
# This workflow was automatically generated through the
5+
# generate-auto-publish-workflows.py script. To update the workflow,
6+
# make changes to the template file and run the script again.
7+
######################################################################
8+
9+
name: Publish css-2027 on /TR
10+
11+
on:
12+
pull_request:
13+
paths:
14+
- "css-2027/**"
15+
push:
16+
branches: [main]
17+
paths:
18+
- "css-2027/**"
19+
workflow_dispatch:
20+
21+
jobs:
22+
publish-TR-css-2027:
23+
name: Publish css-2027
24+
runs-on: ubuntu-latest
25+
steps:
26+
- uses: actions/checkout@v6
27+
- uses: w3c/spec-prod@v2
28+
with:
29+
TOOLCHAIN: bikeshed
30+
SOURCE: css-2027/Overview.bs
31+
DESTINATION: css-2027/index.html
32+
BUILD_FAIL_ON: warning
33+
VALIDATE_MARKUP: false
34+
W3C_ECHIDNA_TOKEN: ${{ secrets.TR_TOKEN_CSS_2027 }}
35+
W3C_WG_DECISION_URL: https://www.w3.org/2025/08/21-css-minutes.html#fc30
36+
W3C_BUILD_OVERRIDE: |
37+
status: NOTE

0 commit comments

Comments
 (0)