From f33726d8cf4f9edb731fc27e35fbba01ce446d5d Mon Sep 17 00:00:00 2001 From: Tyler Smalley Date: Wed, 7 Jun 2023 12:45:43 -0700 Subject: [PATCH] ci: Fix branch label mapping for backport (#13) Versions should be `major.minor`. Resolves backport Github action failing: https://github.com/tailscale-dev/vscode-tailscale/actions/runs/5203821591 Signed-off-by: Tyler Smalley --- .backportrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.backportrc.json b/.backportrc.json index 7293317..afd2963 100644 --- a/.backportrc.json +++ b/.backportrc.json @@ -5,7 +5,7 @@ "targetBranchChoices": ["release-branch/v0.4"], "branchLabelMapping": { - "^v(\\d+).(\\d+).\\d+$": "release-branch/v$1.$2" + "^v(\\d+).(\\d+)": "release-branch/v$1.$2" }, "fork": false,