mirror of
https://github.com/actions/checkout.git
synced 2024-11-15 20:04:33 +08:00
in input-helper, make ref fallback to commit if the commit was provided but not ref
Signed-off-by: James Bradlee <james.bradlee@telenor.no>
This commit is contained in:
parent
67b5caa109
commit
8a241b5b4d
@ -58,7 +58,7 @@ export async function getInputs(): Promise<IGitSourceSettings> {
|
|||||||
|
|
||||||
// Source branch, source version
|
// Source branch, source version
|
||||||
result.commit = core.getInput('commit')
|
result.commit = core.getInput('commit')
|
||||||
result.ref = core.getInput('ref')
|
result.ref = core.getInput('ref') ?? result.commit
|
||||||
if (!result.ref) {
|
if (!result.ref) {
|
||||||
if (isWorkflowRepository) {
|
if (isWorkflowRepository) {
|
||||||
result.ref = github.context.ref
|
result.ref = github.context.ref
|
||||||
|
Loading…
Reference in New Issue
Block a user