chore: allow all 20x response status code in webhook (#2947)

This commit is contained in:
Bryan 2024-02-13 09:30:48 +08:00 committed by GitHub
parent 606e574e19
commit 4aa4417d91
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -95,7 +95,7 @@ func Post(payload WebhookPayload) error {
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
if resp.StatusCode < 200 || resp.StatusCode > 299 {
return errors.Errorf("failed to post webhook %s, status code: %d, response body: %s", payload.URL, resp.StatusCode, b)
}