diff --git a/main.go b/main.go index 3eced28..a7ee086 100644 --- a/main.go +++ b/main.go @@ -238,6 +238,11 @@ func addToProject(ctx context.Context, client *github.Client, eventID, columnID err = validateGitHubResponse(res, err) if err != nil { + // Catch error if the issue is already on that + if err.Message == "Project already has the associated issue" { + infoLog("Project already has the associated issue...skipping") + return nil + } return err }