From ba947dac5c285753c8d15f4fa75788ab737d715c Mon Sep 17 00:00:00 2001 From: Sarah French <15078782+SarahFrench@users.noreply.github.com> Date: Mon, 17 Nov 2025 11:32:11 +0000 Subject: [PATCH] fix: Stop dependency alert GHA failing when 201 response happens (#37905) --- .github/workflows/backported-dependency-change.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/backported-dependency-change.yml b/.github/workflows/backported-dependency-change.yml index 09b74e47d0..6fc54f6348 100644 --- a/.github/workflows/backported-dependency-change.yml +++ b/.github/workflows/backported-dependency-change.yml @@ -77,7 +77,7 @@ jobs: body, }); } - if (resp.status != 200){ + if (resp.status >= 300){ console.error("creating/updating comment failed, here's the response:", resp ) core.setFailed("creating/updating comment failed with status code " + resp.status) }