Open crenshaw-dev opened 2 weeks ago
Each of these functions calls prNumber, err := strconv.Atoi(pullRequest.Status.ID). If the status is missing, this fails.
prNumber, err := strconv.Atoi(pullRequest.Status.ID)
It's especially a problem when deleting a PR that never had the status field populated due to failure to connect to the SCM.
Each of these functions calls
prNumber, err := strconv.Atoi(pullRequest.Status.ID)
. If the status is missing, this fails.It's especially a problem when deleting a PR that never had the status field populated due to failure to connect to the SCM.