Skip to content

Commit

Permalink
Merge branch 'dev' into add-Word-Character-Count-Block
Browse files Browse the repository at this point in the history
  • Loading branch information
aarushik93 authored Nov 26, 2024
2 parents 02fc437 + f62fa3e commit 3c0985e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions autogpt_platform/backend/backend/blocks/github/issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,12 @@ def run(
credentials,
input_data.issue_url,
)
yield "title", title
yield "body", body
yield "user", user
if title:
yield "title", title
if body:
yield "body", body
if user:
yield "user", user


class GithubListIssuesBlock(Block):
Expand Down

0 comments on commit 3c0985e

Please sign in to comment.