1234567891011121314151617 |
- name: CheckAllowedDirs
- on:
- push:
- branches: [ main ]
- pull_request:
- branches: [ main ]
- jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- - name: Check dirs
- run: ${{github.workspace}}/.github/check_dirs.sh ${{github.workspace}}
|