Skip to content

Commit

Permalink
fix search parameters
Browse files Browse the repository at this point in the history
Signed-off-by: (╯°□°)╯︵ uᴉǝssnH ɐɟɐʇsoW <[email protected]>
  • Loading branch information
mostafahussein committed Sep 18, 2022
1 parent 94b0a87 commit d00e377
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func main() {
log.Info("Label " + issueLabel + " created")
}
}
searchQuery := "user:" + os.Getenv("REPO_OWNER") + "repo:" + os.Getenv("REPO_NAME") + " label:" + issueLabel
searchQuery := "user:" + os.Getenv("REPO_OWNER") + " repo:" + os.Getenv("REPO_NAME") + " label:" + issueLabel
existingIssues, _, err := client.Search.Issues(ctx, searchQuery, nil)
if err != nil {
log.Warn(err)
Expand Down

0 comments on commit d00e377

Please sign in to comment.