From 49c8c610e47aae178c5bf1e541d3884ebdea343a Mon Sep 17 00:00:00 2001 From: Anne van Kesteren Date: Sun, 15 Mar 2026 09:59:18 +0100 Subject: [PATCH] Meta: update repository files See https://github.com/whatwg/spec-factory for details. --- CONTRIBUTING.md => .github/CONTRIBUTING.md | 0 .../pull_request_template.md | 0 Makefile | 6 ++++-- 3 files changed, 4 insertions(+), 2 deletions(-) rename CONTRIBUTING.md => .github/CONTRIBUTING.md (100%) rename PULL_REQUEST_TEMPLATE.md => .github/pull_request_template.md (100%) diff --git a/CONTRIBUTING.md b/.github/CONTRIBUTING.md similarity index 100% rename from CONTRIBUTING.md rename to .github/CONTRIBUTING.md diff --git a/PULL_REQUEST_TEMPLATE.md b/.github/pull_request_template.md similarity index 100% rename from PULL_REQUEST_TEMPLATE.md rename to .github/pull_request_template.md diff --git a/Makefile b/Makefile index 45c768c8c..0ae782187 100644 --- a/Makefile +++ b/Makefile @@ -2,13 +2,15 @@ SHELL=/bin/bash -o pipefail .PHONY: local remote deploy remote: dom.bs - @ (HTTP_STATUS=$$(curl https://api.csswg.org/bikeshed/ \ + @ (HTTP_STATUS=$$(curl https://www.w3.org/publications/spec-generator/ \ --output dom.html \ --write-out "%{http_code}" \ --header "Accept: text/plain, text/html" \ -F die-on=warning \ -F md-Text-Macro="COMMIT-SHA LOCAL COPY" \ - -F file=@dom.bs) && \ + -F file=@dom.bs \ + -F type=bikeshed-spec \ + -F output=html) && \ [[ "$$HTTP_STATUS" -eq "200" ]]) || ( \ echo ""; cat dom.html; echo ""; \ rm -f dom.html; \