diff --git a/lib/platform/github/__snapshots__/index.spec.ts.snap b/lib/platform/github/__snapshots__/index.spec.ts.snap index e95821a17a60e78b11c2050622e19bf80e8785d6..339ec34173c28d9cef056aa656183e78b5b50819 100644 --- a/lib/platform/github/__snapshots__/index.spec.ts.snap +++ b/lib/platform/github/__snapshots__/index.spec.ts.snap @@ -4945,7 +4945,7 @@ Array [ ] `; -exports[`platform/github/index getJsonFile() ignores branchOrTag 1`] = ` +exports[`platform/github/index getJsonFile() returns file content 1`] = ` Array [ Object { "graphql": Object { @@ -5006,7 +5006,7 @@ Array [ ] `; -exports[`platform/github/index getJsonFile() returns file content 1`] = ` +exports[`platform/github/index getJsonFile() returns file content from branch or tag 1`] = ` Array [ Object { "graphql": Object { @@ -5062,7 +5062,7 @@ Array [ "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, "method": "GET", - "url": "https://api.github.com/repos/some/repo/contents/file.json", + "url": "https://api.github.com/repos/some/repo/contents/file.json?ref=dev", }, ] `; diff --git a/lib/platform/github/index.spec.ts b/lib/platform/github/index.spec.ts index a16ab9c08e44a446458b7829f4a888d3034c897b..97fd3541e27143d73522d377b1c8d148c0289811 100644 --- a/lib/platform/github/index.spec.ts +++ b/lib/platform/github/index.spec.ts @@ -2445,12 +2445,12 @@ describe('platform/github/index', () => { expect(httpMock.getTrace()).toMatchSnapshot(); }); - it('ignores branchOrTag', async () => { + it('returns file content from branch or tag', async () => { const data = { foo: 'bar' }; const scope = httpMock.scope(githubApiHost); initRepoMock(scope, 'some/repo'); await github.initRepo({ repository: 'some/repo', token: 'token' } as any); - scope.get('/repos/some/repo/contents/file.json').reply(200, { + scope.get('/repos/some/repo/contents/file.json?ref=dev').reply(200, { content: Buffer.from(JSON.stringify(data)).toString('base64'), }); const res = await github.getJsonFile('file.json', 'some/repo', 'dev'); diff --git a/lib/platform/github/index.ts b/lib/platform/github/index.ts index 4ead5ef8faf230fb66db8d90e574ff000b3c8ceb..ecc2895006f8240179e2aa8494da6513837fc57b 100644 --- a/lib/platform/github/index.ts +++ b/lib/platform/github/index.ts @@ -177,7 +177,10 @@ export async function getRawFile( branchOrTag?: string ): Promise<string | null> { const repo = repoName ?? config.repository; - const url = `repos/${repo}/contents/${fileName}`; + let url = `repos/${repo}/contents/${fileName}`; + if (branchOrTag) { + url += `?ref=` + branchOrTag; + } const res = await githubApi.getJson<{ content: string }>(url); const buf = res.body.content; const str = Buffer.from(buf, 'base64').toString();