Skip to content
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

pass-commit-ref-as-input #70

Merged
Merged
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
6 changes: 5 additions & 1 deletion .github/workflows/trigger-prow-build-job-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: Trigger prow build job (reusable)
on:
workflow_call:
inputs:
COMMIT_REF:
required: true
type: string
description: The commit ref for the `wait-for-commit-status-action` action. This should be the branch name from where the release was triggered.
VERSION:
required: true
type: string
Expand Down Expand Up @@ -63,6 +67,6 @@ jobs:
GITHUB_REPO: ${{ github.event.repository.name }}
with:
context: "${{ inputs.CONTEXT }}"
commit_ref: ${{ GITHUB_REF_NAME }} # the name of the release branch.
commit_ref: ${{ inputs.COMMIT_REF }}
timeout: ${{ inputs.TIMEOUT }}
check_interval: ${{ inputs.INTERVAL }}
Loading