diff --git a/autogpt_platform/backend/backend/blocks/github/issues.py b/autogpt_platform/backend/backend/blocks/github/issues.py index 24790accec9e..8cab07db3f71 100644 --- a/autogpt_platform/backend/backend/blocks/github/issues.py +++ b/autogpt_platform/backend/backend/blocks/github/issues.py @@ -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):