Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
luanpotter committed May 15, 2021
1 parent 2ccef49 commit 02ba070
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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ async function run(): Promise<void> {
core.info(`Running with params ${daysUntilClose} ${triggerLabel} ${closingComment}.`);

const client = github.getOctokit(token);
const issues = await client.rest.issues.list();
core.info(`Client: ${client}.`);
const issues = await client.rest.issues.list({baseUrl: 'luanpotter/changes-requested'});
core.info(`Client: ${issues.status}.`);
core.info(`Found ${issues.data.length} issues.`);

core.debug(new Date().toTimeString());
Expand Down

0 comments on commit 02ba070

Please sign in to comment.