22 lines
622 B
YAML
22 lines
622 B
YAML
name: masterplan-lock
|
|
|
|
# Fails the build if this repo's copy of the SIAX Non-Platform masterplan
|
|
# (PLAN/MASTERPLAN_INDEX.md) is deleted or its locked architecture
|
|
# principles are stripped out. Dependency-free (POSIX sh) so it needs no
|
|
# language toolchain -- HARD0 is still a P0-scaffold with no package.json.
|
|
# See scripts/check-masterplan-lock.sh and sax3l/siax-masterplan.
|
|
|
|
on:
|
|
push:
|
|
branches: ["**"]
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Masterplan lock check
|
|
run: sh scripts/check-masterplan-lock.sh
|