Skip to content

Commit de5a000

Browse files
authored
Check out other refs/* by commit if provided, fall back to ref (#1924)
1 parent d632683 commit de5a000

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

__test__/ref-helper.test.ts

+10
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,16 @@ describe('ref-helper tests', () => {
7777
expect(checkoutInfo.startPoint).toBeFalsy()
7878
})
7979

80+
it('getCheckoutInfo refs/ without commit', async () => {
81+
const checkoutInfo = await refHelper.getCheckoutInfo(
82+
git,
83+
'refs/non-standard-ref',
84+
''
85+
)
86+
expect(checkoutInfo.ref).toBe('refs/non-standard-ref')
87+
expect(checkoutInfo.startPoint).toBeFalsy()
88+
})
89+
8090
it('getCheckoutInfo unqualified branch only', async () => {
8191
git.branchExists = jest.fn(async (remote: boolean, pattern: string) => {
8292
return true

dist/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2005,8 +2005,8 @@ function getCheckoutInfo(git, ref, commit) {
20052005
result.ref = ref;
20062006
}
20072007
// refs/
2008-
else if (upperRef.startsWith('REFS/') && commit) {
2009-
result.ref = commit;
2008+
else if (upperRef.startsWith('REFS/')) {
2009+
result.ref = commit ? commit : ref;
20102010
}
20112011
// Unqualified ref, check for a matching branch or tag
20122012
else {

src/ref-helper.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ export async function getCheckoutInfo(
4646
result.ref = ref
4747
}
4848
// refs/
49-
else if (upperRef.startsWith('REFS/') && commit) {
50-
result.ref = commit
49+
else if (upperRef.startsWith('REFS/')) {
50+
result.ref = commit ? commit : ref
5151
}
5252
// Unqualified ref, check for a matching branch or tag
5353
else {

0 commit comments

Comments
 (0)