Skip to content

Commit f133dd3

Browse files
authored
I award myself the "most obvious bug" prize of 2023-10-30 (#347)
Signed-off-by: Gavin John <[email protected]>
1 parent f7806d1 commit f133dd3

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/merge.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,7 @@ async function generateEIPNumber(octokit: Octokit, repository: Repository, front
5555
];
5656
let eips = [];
5757
for (let eipPathConfig in eipPathConfigs) {
58-
const { data } = await octokit.rest.repos.getContent({
59-
owner: repository.owner.login,
60-
repo: repository.name,
61-
path: 'EIPS'
62-
});
58+
const { data } = await octokit.rest.repos.getContent(eipPathConfig);
6359
eips = eips.concat(data);
6460
}
6561

0 commit comments

Comments
 (0)