Skip to content

Commit

Permalink
stupid pr fail
Browse files Browse the repository at this point in the history
  • Loading branch information
lfkwtz committed Oct 2, 2020
1 parent 3e09354 commit 5f08d40
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ async function main() {
owner: contextPayload.repository.owner.login,
repo: contextPayload.repository.name,
pull_number: 2,
pull_number: contextPayload.pull_request.number,
// pull_number: contextPayload.pull_request.number,
});

console.log("contextPayload", contextPayload);

let hasFileWithDropInName = false;

const files = await githubClient.paginate(endpointOptions, (response) => {
Expand Down
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ async function main() {
owner: contextPayload.repository.owner.login,
repo: contextPayload.repository.name,
pull_number: 2,
pull_number: contextPayload.pull_request.number,
// pull_number: contextPayload.pull_request.number,
});

console.log("contextPayload", contextPayload);

let hasFileWithDropInName = false;

const files = await githubClient.paginate(endpointOptions, (response) => {
Expand Down

0 comments on commit 5f08d40

Please sign in to comment.