feat(pr-notify): extract session ID from PR description #79
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: Shellcheck | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - '**.sh' | |
| - 'tools/**' | |
| - 'agents/**/setup-*.sh' | |
| - '.github/workflows/shellcheck.yml' | |
| pull_request: | |
| paths: | |
| - '**.sh' | |
| - 'tools/**' | |
| - 'agents/**/setup-*.sh' | |
| - '.github/workflows/shellcheck.yml' | |
| workflow_dispatch: | |
| jobs: | |
| shellcheck: | |
| name: Run shellcheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Run shellcheck | |
| run: bash tools/check-shell-scripts.sh --all |