From 3a4b0d61f241e6e26cf0180078780424f0749530 Mon Sep 17 00:00:00 2001 From: Kyle Gospodnetich Date: Mon, 28 Oct 2024 22:42:17 -0700 Subject: [PATCH] fix(ci): Use "stable" instead of "main" when handling changelog target --- .github/workflows/changelog.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/changelog.py b/.github/workflows/changelog.py index a555e8987d..2d0615af54 100644 --- a/.github/workflows/changelog.py +++ b/.github/workflows/changelog.py @@ -398,6 +398,9 @@ def main(): # Tags cannot include / anyway. target = args.target.split('/')[-1] + if target == "main": + target = "stable" + manifests = get_manifests(target) prev, curr = get_tags(target, manifests) print(f"Previous tag: {prev}")