File 1032-gh-Fix-branch-filter-when-updating-actions.patch of Package erlang
From 078722e4474abd6b0c9f4a6e87acee2a703e61ad Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lukas=20Backstr=C3=B6m?= <lukas@erlang.org>
Date: Wed, 18 Jun 2025 15:28:57 +0200
Subject: [PATCH 2/2] gh: Fix branch filter when updating actions
---
.github/scripts/update-gh-actions-versions.es | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/scripts/update-gh-actions-versions.es b/.github/scripts/update-gh-actions-versions.es
index 538e98f4f8..dc11c52a63 100755
--- a/.github/scripts/update-gh-actions-versions.es
+++ b/.github/scripts/update-gh-actions-versions.es
@@ -112,7 +112,7 @@ run(Opts) ->
SupportedMajorVersions = string:split(cmd(Opts, ".github/scripts/get-supported-versions.sh"),"\n", all),
%% Fetch all PRs done by renovate
- PRs = cmd(Opts, ["gh pr -R ", Upstream, " list | grep 'renovate/[a-z-]\\+github-actions' | awk '{print $1}'"]),
+ PRs = cmd(Opts, ["gh pr -R ", Upstream, " list | grep 'renovate/[a-z0-9-]\\+github-actions' | awk '{print $1}'"]),
%% If string is non-empty we have some PRs that we need to deal with
case not string:equal(PRs,"") of
--
2.43.0