Skip to content

Commit 6baa24d

Browse files
authored
Merge branch 'main' into dependabot/github_actions/main/production-dependencies-46c441f9fc
2 parents 0f610c5 + 47e2fd9 commit 6baa24d

File tree

7 files changed

+4
-8
lines changed

7 files changed

+4
-8
lines changed

.github/workflows/codeql-iac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: CodeQL IaC Scanning
22

33
on:
4-
pull_request:
54
workflow_call:
5+
workflow_dispatch:
66

77
jobs:
88
analysis:

.github/workflows/labeler.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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"

.github/workflows/python-linting.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
name: Python - Linting
55

66
on:
7-
pull_request:
87
workflow_call:
98
inputs:
109
tool:

.github/workflows/python-release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
name: Python - Release
33

44
on:
5-
push:
65
workflow_call:
76
inputs:
87
version:

.github/workflows/python-testing.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
name: Python - Testing
55

66
on:
7-
pull_request:
87
workflow_call:
98
inputs:
109
versions:

.github/workflows/python-vendor.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
name: Python - Vendoring
33

44
on:
5-
push:
65
workflow_call:
76
inputs:
87
custom-property:

.github/workflows/python.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
name: Python
55

66
on:
7-
pull_request:
87
workflow_call:
98
inputs:
109
version:

0 commit comments

Comments
 (0)