File tree Expand file tree Collapse file tree 7 files changed +4
-8
lines changed
Expand file tree Collapse file tree 7 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 11name : CodeQL IaC Scanning
22
33on :
4- pull_request :
54 workflow_call :
5+ workflow_dispatch :
66
77jobs :
88 analysis :
Original file line number Diff line number Diff line change @@ -25,15 +25,16 @@ jobs:
2525 id : labeler-config
2626 env :
2727 GH_TOKEN : ${{ github.token }}
28+ CONFIG_PATH : ${{ github.event.inputs.configuration-path }}
2829 run : |
2930 set -e
3031 if [ -f .github/labeler.yml ]; then
3132 echo "Labeler configuration found"
3233 echo "config=./.github/labeler.yml" >> $GITHUB_STATE
3334
34- elif [[ -f "${{ github.event.inputs.configuration-path }} " ]]; then
35+ elif [[ -f "$CONFIG_PATH " ]]; then
3536 echo "Labeler configuration found"
36- echo "config=${{ github.event.inputs.configuration-path }} " >> $GITHUB_STATE
37+ echo "config=$CONFIG_PATH " >> $GITHUB_STATE
3738
3839 else
3940 echo "No labeler configuration found"
Original file line number Diff line number Diff line change 44name : Python - Linting
55
66on :
7- pull_request :
87 workflow_call :
98 inputs :
109 tool :
Original file line number Diff line number Diff line change 22name : Python - Release
33
44on :
5- push :
65 workflow_call :
76 inputs :
87 version :
Original file line number Diff line number Diff line change 44name : Python - Testing
55
66on :
7- pull_request :
87 workflow_call :
98 inputs :
109 versions :
Original file line number Diff line number Diff line change 22name : Python - Vendoring
33
44on :
5- push :
65 workflow_call :
76 inputs :
87 custom-property :
Original file line number Diff line number Diff line change 44name : Python
55
66on :
7- pull_request :
87 workflow_call :
98 inputs :
109 version :
You can’t perform that action at this time.
0 commit comments