We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4005a5a commit b445549Copy full SHA for b445549
index.js
@@ -20,8 +20,6 @@ paramValidation("token");
20
paramValidation("result");
21
paramValidation("run");
22
23
-console.log(JSON.stringify(github.context));
24
-
25
const octokit = github.getOctokit(core.getInput("token"));
26
27
/**
@@ -86,7 +84,7 @@ function addReviewers() {
86
84
{
87
85
owner: github.context.repo.owner,
88
repo: github.context.repo.repo,
89
- pull_number: github.context.pull_number,
+ pull_number: github.context.payload.number,
90
reviewers: (reviewers = reviewers.slice(0, conscript)),
91
}
92
)
0 commit comments