From 88318e27e646f18fa71fec7ee2e5c7f75452e2e2 Mon Sep 17 00:00:00 2001 From: Andrew Davis Date: Tue, 31 Mar 2026 14:45:23 +1100 Subject: [PATCH] gitlab: update pipelines cmd for new ci name again This changed again, but to break it into different debian versions. They are however all prefixed with autonewt-ci so changing it to match if that is in the string at all --- lib/Synergy/Reactor/GitLab.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Synergy/Reactor/GitLab.pm b/lib/Synergy/Reactor/GitLab.pm index f7aeef08..367e8370 100644 --- a/lib/Synergy/Reactor/GitLab.pm +++ b/lib/Synergy/Reactor/GitLab.pm @@ -976,7 +976,7 @@ async sub _get_pipelines ($self, $text, $event) { my $reply = ''; my @reply_blocks = (); for my $job ($jobs->@*) { - next unless $job->{name} eq 'autonewt-ci'; + next unless $job->{name} =~ 'autonewt-ci'; my ($mr_url, $mr); if ($job->{pipeline}->{source} eq 'merge_request_event') {