We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7155d8 commit 6f5ee2eCopy full SHA for 6f5ee2e
src/index.ts
@@ -15,8 +15,8 @@ octokit.rest.repos.listForOrg({org: organizationName}).then((response) => {
15
return;
16
}
17
18
- octokit.rest.issues.listLabelsForRepo({owner: organizationName, repo: repo.name}).then((label) => {
19
- console.log(label);
+ octokit.rest.issues.listLabelsForRepo({owner: organizationName, repo: repo.name}).then((labels) => {
+ console.log(labels.data);
20
21
})
22
0 commit comments