We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e01c7f4 commit f3aa3abCopy full SHA for f3aa3ab
1 file changed
.github/workflows/codeql.yaml
@@ -63,26 +63,3 @@ jobs:
63
uses: github/codeql-action/analyze@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
64
with:
65
category: "/language:${{matrix.language}}"
66
-
67
- check:
68
- name: Check CodeQL Analysis
69
- if: always() && github.event_name == 'pull_request'
70
- needs:
71
- - analyze
72
- runs-on: ubuntu-latest
73
- defaults:
74
- run:
75
- shell: bash
76
- steps:
77
- - name: Check
78
- env:
79
- INPUT_RESULTS: ${{ join(needs.*.result, ' ') }}
80
- run: |
81
- set -euo pipefail
82
- read -a results <<< "${INPUT_RESULTS}"
83
- for result in "${results[@]}"; do
84
- if [[ "${result}" == "failure" ]] || [[ "${result}" == "cancelled" ]]; then
85
- echo "::error::Workflow failed!"
86
- exit 1
87
- fi
88
- done
0 commit comments