feat(goal): make Goal the sole long-task runtime / Goal 成为唯一长任务状态机 #9413
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: CodeQL | |
| on: | |
| # Docs/release-notes/root-Markdown changes carry no analyzable code; the | |
| # weekly cron keeps the full scan cadence regardless. | |
| push: | |
| branches: ["main-v2"] | |
| paths-ignore: | |
| - 'docs/**' | |
| - 'release-notes/**' | |
| - '*.md' | |
| pull_request: | |
| branches: ["main-v2"] | |
| paths-ignore: | |
| - 'docs/**' | |
| - 'release-notes/**' | |
| - '*.md' | |
| schedule: | |
| - cron: "27 3 * * 1" | |
| jobs: | |
| analyze: | |
| name: Analyze (${{ matrix.language }}) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write | |
| packages: read | |
| actions: read | |
| contents: read | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - language: go | |
| build-mode: autobuild | |
| - language: javascript-typescript | |
| build-mode: none | |
| - language: actions | |
| build-mode: none | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4.37.4 | |
| with: | |
| languages: ${{ matrix.language }} | |
| build-mode: ${{ matrix.build-mode }} | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4.37.4 | |
| with: | |
| category: "/language:${{ matrix.language }}" |