We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 068521b commit 715d717Copy full SHA for 715d717
run.js
@@ -96,13 +96,13 @@ const pkg = require('./package.json')
96
97
const agendaIssues = []
98
for (const r of repos) {
99
- console.log(`Fetching issues for ${r.owner}/${r.repo}`)
100
const _agendaIssues = await client.paginate('GET /repos/{owner}/{repo}/issues', {
101
owner: r.owner,
102
repo: r.repo,
103
state: 'open',
104
labels: agendaLabel
105
})
+ console.log(`Fetching issues for ${r.owner}/${r.repo}: Found ${_agendaIssues.length}`)
106
for (const i of _agendaIssues) {
107
if (!agendaIssues.find((ii) => ii.url === i.url)) {
108
agendaIssues.push(i)
0 commit comments