fix missing contrib_repo_sha in workflow (#3049)

Signed-off-by: emdneto <9735060+emdneto@users.noreply.github.com>
This commit is contained in:
Emídio Neto 2024-11-26 11:03:42 -03:00 committed by GitHub
parent 41bd34f6e1
commit 97d1514b65
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 4 deletions

View File

@ -9,10 +9,12 @@ on:
CORE_REPO_SHA: CORE_REPO_SHA:
required: true required: true
type: string type: string
CONTRIB_REPO_SHA:
required: true
type: string
env: env:
CORE_REPO_SHA: ${{ inputs.CORE_REPO_SHA }} CORE_REPO_SHA: ${{ inputs.CORE_REPO_SHA }}
CONTRIB_REPO_SHA: main CONTRIB_REPO_SHA: ${{ inputs.CONTRIB_REPO_SHA }}
PIP_EXISTS_ACTION: w PIP_EXISTS_ACTION: w
jobs: jobs:

View File

@ -9,10 +9,12 @@ on:
CORE_REPO_SHA: CORE_REPO_SHA:
required: true required: true
type: string type: string
CONTRIB_REPO_SHA:
required: true
type: string
env: env:
CORE_REPO_SHA: ${% raw %}{{ inputs.CORE_REPO_SHA }}{% endraw %} CORE_REPO_SHA: ${% raw %}{{ inputs.CORE_REPO_SHA }}{% endraw %}
CONTRIB_REPO_SHA: main CONTRIB_REPO_SHA: ${% raw %}{{ inputs.CONTRIB_REPO_SHA }}{% endraw %}
PIP_EXISTS_ACTION: w PIP_EXISTS_ACTION: w
jobs: jobs: