Add Claude Code GitHub Workflow #400
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: Check Links | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| check_cpln_links: | |
| runs-on: ubuntu-latest | |
| name: Check Links | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Validate outgoing links to Control Plane | |
| run: | | |
| TERM=xterm-color ./script/check_cpln_links | |
| shell: bash |