[llvm-branch-commits] [llvm] [workflows] Fix version-check.yml to work with the new minor release bump (PR #79495)

Tom Stellard via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Thu Jan 25 12:25:49 PST 2024


https://github.com/tstellar created https://github.com/llvm/llvm-project/pull/79495

None

>From 9f8b83a13c91401d4c67e84a682d2cd5ef1e85fb Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Thu, 25 Jan 2024 12:24:50 -0800
Subject: [PATCH] [workflows] Fix version-check.yml to with the new minor
 release bump

---
 .github/workflows/version-check.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/version-check.py b/.github/workflows/version-check.py
index 7f805f304e3d76f..f75fd50300881b9 100755
--- a/.github/workflows/version-check.py
+++ b/.github/workflows/version-check.py
@@ -16,7 +16,7 @@ def get_version_from_tag(tag):
 
     m = re.match("llvmorg-([0-9]+)-init", tag)
     if m:
-        return (m.group(1), "0", "0")
+        return (m.group(1), "1", "0")
 
     raise Exception(f"error: Tag is not valid: {tag}")
 



More information about the llvm-branch-commits mailing list