Website v2: design-system migration, redesigned homepage + team + research + news #43
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Content Rules Checks | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| paths: | |
| - ".github/workflows/content-rules-checks.yml" | |
| - "CLAUDE.md" | |
| - "README.md" | |
| - "history.md" | |
| - "_research/index.md" | |
| - "scripts/check-content-rules-trigger-parity.py" | |
| - "scripts/validate-content-rules.sh" | |
| push: | |
| branches: ["main"] | |
| paths: | |
| - ".github/workflows/content-rules-checks.yml" | |
| - "CLAUDE.md" | |
| - "README.md" | |
| - "history.md" | |
| - "_research/index.md" | |
| - "scripts/check-content-rules-trigger-parity.py" | |
| - "scripts/validate-content-rules.sh" | |
| jobs: | |
| content-rules: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Check workflow trigger parity | |
| run: python3 scripts/check-content-rules-trigger-parity.py | |
| - name: Validate history and research content rules | |
| run: bash scripts/validate-content-rules.sh |