Skip to content

chore(governance): land missing docs/packaging before the standards#5… #30

chore(governance): land missing docs/packaging before the standards#5…

chore(governance): land missing docs/packaging before the standards#5… #30

Workflow file for this run

# SPDX-License-Identifier: MPL-2.0
# Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <j.d.a.jewell@open.ac.uk>
#
# Estate Rules — enforces hyperpolymath estate-wide conventions:
# * root shape (allowlist of permitted root entries)
# * AsciiDoc-by-default (no .md files under docs/)
# * zig is banned (no zig scaffolding or references)
#
# Each rule is enforced by an executable check script under scripts/. Failures
# are surfaced as workflow errors so the rule can't silently regress.
name: Estate Rules
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
estate-rules:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Root shape allowlist
run: bash scripts/check-root-shape.sh .
- name: AsciiDoc by default (no .md under docs/)
run: bash scripts/check-no-md-in-docs.sh .
- name: No zig references
run: bash scripts/check-no-vlang.sh .