Include Boundary Policy #452
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: Include Boundary Policy | |
| on: | |
| schedule: | |
| - cron: '0 6 * * *' # Daily at 6:00 UTC | |
| workflow_dispatch: | |
| jobs: | |
| boundary-check: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: 'true' | |
| - name: Install ripgrep | |
| run: sudo apt-get install -y ripgrep | |
| - name: Run include boundary policy (warn mode) | |
| run: bash ci_scripts/check_core_include_boundaries.sh --mode warn |