16 lines
408 B
YAML
16 lines
408 B
YAML
# Regenerates README.md's index section on every merge to main.
|
|
# See §2 of SPEC.md. Implementation is a follow-up — this workflow
|
|
# file is present as a marker so the meta repo's shape matches the
|
|
# spec from day one.
|
|
name: regenerate-readme-index
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
noop:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo "Index regeneration is a follow-up (see SPEC §2)"
|