Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9d73a3a

Browse files
committedFeb 18, 2024·
feat: add assignees to find-issues
1 parent e0e6d4a commit 9d73a3a

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed
 

‎dist/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -16599,6 +16599,7 @@ function doFindIssues() {
1659916599
title: issue.title,
1660016600
body: issue.body,
1660116601
state: issue.state,
16602+
assignees: issue.assignees.map(val => val.login),
1660216603
created: issue.created_at,
1660316604
updated: issue.updated_at,
1660416605
};

‎src/helper/advanced.ts

+1
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,7 @@ export async function doFindIssues() {
272272
title: issue.title,
273273
body: issue.body,
274274
state: issue.state,
275+
assignees: issue.assignees.map(val => val.login),
275276
created: issue.created_at,
276277
updated: issue.updated_at,
277278
};

0 commit comments

Comments
 (0)
Please sign in to comment.