mirror of
https://github.com/actions/checkout.git
synced 2025-12-14 14:12:16 +00:00
Check out other refs/* by commit if provided, fall back to ref (#1924)
Some checks failed
Check dist / check-dist (push) Failing after 9s
CodeQL / Analyze (javascript) (push) Failing after 7s
Licensed / Check licenses (push) Successful in 27s
Build and Test / build (push) Failing after 7s
Build and Test / test (ubuntu-latest) (push) Failing after 48s
Build and Test / test-proxy (push) Failing after 30s
Build and Test / test-bypass-proxy (push) Failing after 39s
Build and Test / test-git-container (push) Failing after 13s
Build and Test / test-output (push) Successful in 18s
Build and Test / test (macos-latest) (push) Has been cancelled
Build and Test / test (windows-latest) (push) Has been cancelled
Some checks failed
Check dist / check-dist (push) Failing after 9s
CodeQL / Analyze (javascript) (push) Failing after 7s
Licensed / Check licenses (push) Successful in 27s
Build and Test / build (push) Failing after 7s
Build and Test / test (ubuntu-latest) (push) Failing after 48s
Build and Test / test-proxy (push) Failing after 30s
Build and Test / test-bypass-proxy (push) Failing after 39s
Build and Test / test-git-container (push) Failing after 13s
Build and Test / test-output (push) Successful in 18s
Build and Test / test (macos-latest) (push) Has been cancelled
Build and Test / test (windows-latest) (push) Has been cancelled
This commit is contained in:
@@ -46,8 +46,8 @@ export async function getCheckoutInfo(
|
||||
result.ref = ref
|
||||
}
|
||||
// refs/
|
||||
else if (upperRef.startsWith('REFS/') && commit) {
|
||||
result.ref = commit
|
||||
else if (upperRef.startsWith('REFS/')) {
|
||||
result.ref = commit ? commit : ref
|
||||
}
|
||||
// Unqualified ref, check for a matching branch or tag
|
||||
else {
|
||||
|
||||
Reference in New Issue
Block a user