Files
WatchLink/.gitea/workflows/template-compliance.yml
MrSphay d3e84feedd
Some checks failed
Build / build (push) Failing after 1m29s
Release Dry Run / release-dry-run (push) Successful in 1m24s
Template Compliance / compliance (push) Failing after 5s
Initial WatchLink scaffold
2026-05-15 03:11:41 +02:00

30 lines
737 B
YAML

name: Template Compliance
on:
push:
pull_request:
workflow_dispatch:
jobs:
compliance:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Required files
run: |
test -f AGENTS.md
test -f .codex/project.md
test -f README.md
test -f SECURITY.md
test -f CHANGELOG.md
test -f .gitignore
- name: Placeholder scan
run: |
! grep -RInE "PROJECT_NAME|PROJECT_DESCRIPTION|REPOSITORY_OWNER|REPOSITORY_NAME|PACKAGE_NAME|ARTIFACT_NAME|ARTIFACT_OUTPUT_DIRECTORY" -- AGENTS.md .codex README.md docs .gitea || exit 1
- name: README divider
run: grep -q "rainbow.png" README.md