Skip to content

feat(ci): Update codeql-iac.yml #45

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codeql-iac.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: CodeQL IaC Scanning

on:
pull_request:
workflow_call:
workflow_dispatch:

jobs:
analysis:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,16 @@ jobs:
id: labeler-config
env:
GH_TOKEN: ${{ github.token }}
CONFIG_PATH: ${{ github.event.inputs.configuration-path }}
run: |
set -e
if [ -f .github/labeler.yml ]; then
echo "Labeler configuration found"
echo "config=./.github/labeler.yml" >> $GITHUB_STATE

elif [[ -f "${{ github.event.inputs.configuration-path }}" ]]; then
elif [[ -f "$CONFIG_PATH" ]]; then
echo "Labeler configuration found"
echo "config=${{ github.event.inputs.configuration-path }}" >> $GITHUB_STATE
echo "config=$CONFIG_PATH" >> $GITHUB_STATE

else
echo "No labeler configuration found"
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/python-linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
name: Python - Linting

on:
pull_request:
workflow_call:
inputs:
tool:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/python-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
name: Python - Release

on:
push:
workflow_call:
inputs:
version:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/python-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
name: Python - Testing

on:
pull_request:
workflow_call:
inputs:
versions:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/python-vendor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
name: Python - Vendoring

on:
push:
workflow_call:
inputs:
custom-property:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
name: Python

on:
pull_request:
workflow_call:
inputs:
version:
Expand Down