Skip to content

Commit 97d1514

Browse files
authored
fix missing contrib_repo_sha in workflow (#3049)
Signed-off-by: emdneto <[email protected]>
1 parent 41bd34f commit 97d1514

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/core_contrib_test_0.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ on:
99
CORE_REPO_SHA:
1010
required: true
1111
type: string
12-
12+
CONTRIB_REPO_SHA:
13+
required: true
14+
type: string
1315
env:
1416
CORE_REPO_SHA: ${{ inputs.CORE_REPO_SHA }}
15-
CONTRIB_REPO_SHA: main
17+
CONTRIB_REPO_SHA: ${{ inputs.CONTRIB_REPO_SHA }}
1618
PIP_EXISTS_ACTION: w
1719

1820
jobs:

.github/workflows/generate_workflows_lib/src/generate_workflows_lib/core_contrib_test.yml.j2

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ on:
99
CORE_REPO_SHA:
1010
required: true
1111
type: string
12-
12+
CONTRIB_REPO_SHA:
13+
required: true
14+
type: string
1315
env:
1416
CORE_REPO_SHA: ${% raw %}{{ inputs.CORE_REPO_SHA }}{% endraw %}
15-
CONTRIB_REPO_SHA: main
17+
CONTRIB_REPO_SHA: ${% raw %}{{ inputs.CONTRIB_REPO_SHA }}{% endraw %}
1618
PIP_EXISTS_ACTION: w
1719

1820
jobs:

0 commit comments

Comments
 (0)