fix(session-goal): judge goal completion on host evidence, not the model's claim #9868
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: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| # Skip CodeQL for docs-only PRs (Markdown/MDX and the docs site tree) to | |
| # save CI minutes. Not a required check, so skipping cannot block merge. | |
| # `push` to main and the weekly schedule keep full coverage regardless. | |
| paths-ignore: | |
| - '**/*.md' | |
| - '**/*.mdx' | |
| - 'docs/**' | |
| schedule: | |
| - cron: "0 6 * * 1" | |
| permissions: | |
| contents: read | |
| security-events: write | |
| actions: read | |
| jobs: | |
| analyze: | |
| if: github.repository == 'Tracer-Cloud/opensre' | |
| name: Analyze (python) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: python | |
| build-mode: none | |
| config-file: .github/codeql/codeql-config.yml | |
| queries: security-and-quality | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 | |
| with: | |
| category: /language:python |