diff --git a/scripts/cijobs.pl b/scripts/cijobs.pl index 38189d75ab..3242c31a7d 100755 --- a/scripts/cijobs.pl +++ b/scripts/cijobs.pl @@ -495,7 +495,8 @@ sub zuul { return $c; } -my $tag = "origin/master"; +my $tag = `git rev-parse --abbrev-ref HEAD 2>/dev/null` || "master"; +chomp $tag; githubactions($tag); azurepipelines($tag); appveyor($tag);