From d9a0f39e845bd8fe6daf10c6b189ae6d754ac99f Mon Sep 17 00:00:00 2001 From: Anne van Kesteren Date: Sun, 15 Mar 2026 10:00: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 7382631..2c83629 100644 --- a/Makefile +++ b/Makefile @@ -2,13 +2,15 @@ SHELL=/bin/bash -o pipefail .PHONY: local remote deploy remote: storage.bs - @ (HTTP_STATUS=$$(curl https://api.csswg.org/bikeshed/ \ + @ (HTTP_STATUS=$$(curl https://www.w3.org/publications/spec-generator/ \ --output storage.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=@storage.bs) && \ + -F file=@storage.bs \ + -F type=bikeshed-spec \ + -F output=html) && \ [[ "$$HTTP_STATUS" -eq "200" ]]) || ( \ echo ""; cat storage.html; echo ""; \ rm -f storage.html; \