Skip to content

Commit 9647db9

Browse files
committed
Add some progress indicator
1 parent 7958271 commit 9647db9

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ let log = console.log;
1111
let debug = (msg) => { if (verbose) { log(msg); } }
1212

1313
async function run(owner, repo, token) {
14+
console.log("Working...");
1415
const octokit = github.getOctokit(token)
1516

1617
debug(`Listing branches for ${owner}/${repo}.`);
@@ -97,6 +98,7 @@ async function run(owner, repo, token) {
9798
}
9899
}
99100

101+
console.log(`Done. ${found ? 'Found issues.' : 'No issues found.'}`);
100102
return found;
101103
}
102104

0 commit comments

Comments
 (0)