ci: update status when action triggered by issue comment #690
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: # yamllint disable-line rule:truthy | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| types: | |
| - opened | |
| - synchronize | |
| - labeled | |
| issue_comment: | |
| types: | |
| - created | |
| merge_group: | |
| branches: | |
| - main | |
| types: | |
| - checks_requested | |
| schedule: | |
| - cron: 8 10 * * 3 | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| # This is required for the ability to create/update the Pull request status | |
| statuses: write | |
| jobs: | |
| analyze: | |
| if: | | |
| ( | |
| github.event_name == 'issue_comment' | |
| && github.event.issue.pull_request | |
| && (contains(github.event.comment.body, '[citest_all]') | |
| || contains(github.event.comment.body, '[citest_codeql]')) | |
| && (contains(fromJson('["OWNER", "MEMBER", "COLLABORATOR"]'), | |
| github.event.comment.author_association) | |
| || github.event.comment.user.login == 'systemroller') | |
| ) || ( | |
| github.event_name == 'pull_request' | |
| && github.event.action == 'opened' | |
| && (contains(github.event.pull_request.labels.*.name, 'citest_all') | |
| || contains(github.event.pull_request.labels.*.name, 'citest_codeql')) | |
| && (contains(fromJson('["OWNER", "MEMBER", "COLLABORATOR"]'), | |
| github.event.pull_request.author_association) | |
| || github.event.pull_request.user.login == 'systemroller') | |
| ) || ( | |
| github.event_name == 'pull_request' | |
| && github.event.action == 'synchronize' | |
| && (contains(github.event.pull_request.labels.*.name, 'citest_all') | |
| || contains(github.event.pull_request.labels.*.name, 'citest_codeql')) | |
| && (contains(fromJson('["OWNER", "MEMBER", "COLLABORATOR"]'), | |
| github.event.pull_request.author_association) | |
| || github.event.sender.login == 'systemroller') | |
| ) || ( | |
| github.event_name == 'pull_request' | |
| && github.event.action == 'labeled' | |
| && (github.event.label.name == 'citest_all' | |
| || github.event.label.name == 'citest_codeql') | |
| && (contains(fromJson('["OWNER", "MEMBER", "COLLABORATOR"]'), | |
| github.event.pull_request.author_association) | |
| || github.event.sender.login == 'systemroller') | |
| ) | |
| name: Analyze | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: read | |
| actions: read | |
| contents: read | |
| security-events: write | |
| statuses: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: [python] | |
| steps: | |
| - name: Get PR head SHA and context | |
| if: github.event_name == 'issue_comment' | |
| id: head_sha_context | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| REPO: ${{ github.repository }} | |
| PR_NUMBER: ${{ github.event.issue.number }} | |
| CONTEXT: "${{ github.workflow }} / Analyze (${{ matrix.language }}) (pull_request)" | |
| run: | | |
| set -euxo pipefail | |
| head_sha=$(gh api "repos/$REPO/pulls/$PR_NUMBER" --jq '.head.sha') | |
| echo "head_sha=$head_sha" >> "$GITHUB_OUTPUT" | |
| echo "context=$CONTEXT" >> "$GITHUB_OUTPUT" | |
| - name: Set commit status as pending | |
| if: github.event_name == 'issue_comment' | |
| uses: myrotvorets/set-commit-status-action@c0f880c99d91381c6fdb97726f03feb8004409b4 # master | |
| with: | |
| sha: ${{ steps.head_sha_context.outputs.head_sha }} | |
| status: pending | |
| context: ${{ steps.head_sha_context.outputs.context }} | |
| description: Test started | |
| targetUrl: "" | |
| - name: Update pip, git | |
| run: | | |
| set -euxo pipefail | |
| sudo apt update | |
| sudo apt install -y git | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 | |
| with: | |
| persist-credentials: false | |
| ref: ${{ steps.head_sha_context.outputs.head_sha || github.sha }} | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@cdf488f595d80d6e07e03d4674febd5ab45fa938 # v4.37.9 | |
| with: | |
| languages: ${{ matrix.language }} | |
| queries: +security-and-quality | |
| - name: Autobuild | |
| uses: github/codeql-action/autobuild@cdf488f595d80d6e07e03d4674febd5ab45fa938 # v4.37.9 | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@cdf488f595d80d6e07e03d4674febd5ab45fa938 # v4.37.9 | |
| with: | |
| category: "/language:${{ matrix.language }}" | |
| - name: Set final commit status | |
| if: always() && github.event_name == 'issue_comment' && steps.head_sha_context.outputs.head_sha != '' | |
| uses: myrotvorets/set-commit-status-action@c0f880c99d91381c6fdb97726f03feb8004409b4 # master | |
| with: | |
| sha: ${{ steps.head_sha_context.outputs.head_sha }} | |
| status: ${{ job.status }} | |
| context: ${{ steps.head_sha_context.outputs.context }} | |
| description: Test finished | |
| targetUrl: "" |