feat: v6.3.0 pipeline hardening — auth/authz bug-class, pr-monitoring pattern, completion trust-boundary, hook stdout-JSON discipline, reminder dedup (#41/#58/#59/#60/#61) #4
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: Hooks Check | |
| on: | |
| push: | |
| paths: | |
| - 'hooks/**' | |
| - 'tests/hook-contracts.sh' | |
| - 'tests/hook-stdout-discipline.sh' | |
| - '.github/workflows/hooks-check.yml' | |
| pull_request: | |
| paths: | |
| - 'hooks/**' | |
| - 'tests/hook-contracts.sh' | |
| - 'tests/hook-stdout-discipline.sh' | |
| jobs: | |
| hooks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install jq | |
| run: sudo apt-get update && sudo apt-get install -y jq | |
| - name: Hook stdout discipline tests | |
| run: bash tests/hook-stdout-discipline.sh | |
| - name: Hook contract tests | |
| run: bash tests/hook-contracts.sh |