[llvm-branch-commits] [llvm] [workflows] Fix version-check.yml to work with the new minor release bump (PR #79495)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Thu Jan 25 12:26:17 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-github-workflow
Author: Tom Stellard (tstellar)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/79495.diff
1 Files Affected:
- (modified) .github/workflows/version-check.py (+1-1)
``````````diff
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}")
``````````
</details>
https://github.com/llvm/llvm-project/pull/79495
More information about the llvm-branch-commits
mailing list