From 61b38f3adafd75df40ef71bcc1532fd0dbb814dc Mon Sep 17 00:00:00 2001 From: Alisdair McDiarmid Date: Wed, 28 Oct 2020 16:46:28 -0400 Subject: [PATCH] Another action regex fix attempt This time I actually tested the regex --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b4333b147..3576def6d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: run: | backport-assistant backport env: - BACKPORT_LABEL_REGEXP: "(?P\\d\\.\\d)-backport" + BACKPORT_LABEL_REGEXP: "(?P\\d+\\.\\d+)-backport" BACKPORT_TARGET_TEMPLATE: "v{{.target}}" GITHUB_TOKEN: ${{ secrets.ELEVATED_GITHUB_TOKEN }} GITHUB_REVIEW_TEAMS: "hashicorp/terraform-core"