[auto] docs: update docs-manifest.json — remap from edgestack-v2 to current repos #7
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: Governance Check | |
| on: | |
| pull_request: | |
| branches: [main, master] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| governance: | |
| name: Charter | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Install dependencies | |
| run: | | |
| if [ -f package-lock.json ]; then | |
| npm ci | |
| else | |
| npm install | |
| fi | |
| - name: Validate Commits | |
| run: npx charter validate --ci --format text | |
| - name: Drift Scan | |
| run: npx charter drift --ci --format text | |
| - name: Audit Report | |
| run: npx charter audit --format json > /tmp/audit.json | |
| if: always() |