From aeb6098eb63eff3835daf61718e138c7c56b48c6 Mon Sep 17 00:00:00 2001 From: Warren Gifford Date: Tue, 25 Jun 2024 10:17:55 -0700 Subject: [PATCH] correct escape in yaml --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 3b001cf..b962c85 100644 --- a/action.yml +++ b/action.yml @@ -29,7 +29,7 @@ inputs: The regular expression pattern that PR labels will be tested on to decide whether the PR should be backported and where. The backport PR's base branch will be extracted from the pattern's required `base` named capturing group. # default: "^backport (?([^ ]+))$" - default: "^backport (?\d+\.\d+\.x)$" + default: '^backport (?\d+\.\d+\.x)$' title_template: description: > Lodash template for the backport PR's title.