Skip to content

Commit

Permalink
fix: fix failing check CodeQL GitHub workflow (#1991)
Browse files Browse the repository at this point in the history
Fixed check CodeQL GitHub workflow by moving the step into our existing
CodeQL workflow.

Solves PZ-4434
  • Loading branch information
edgarvonk authored Nov 4, 2024
1 parent bc81f80 commit 439ca2b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 26 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/check-codeql-status.yml

This file was deleted.

18 changes: 18 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,21 @@ jobs:
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"

check_codeql_status:
name: Check CodeQL Status
needs:
- analyze
runs-on: ubuntu-latest
permissions:
contents: read
checks: read
pull-requests: read
if: ${{ github.event_name == 'pull_request' }}
steps:
- name: Check CodeQL Status
uses: eldrick19/code-scanning-status-checker@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
pr_number: ${{ github.event.pull_request.number }}
repo: ${{ github.repository }}

0 comments on commit 439ca2b

Please sign in to comment.