From c1aeca20bce7f5af3c4a4e3f3a8914b7cf9a2325 Mon Sep 17 00:00:00 2001 From: Yi Lin Date: Tue, 23 Jan 2024 03:40:40 +0000 Subject: [PATCH] Escape + in the branch name for the workflow trigger --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7f58cdb4..30bf8e28 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,8 +4,8 @@ on: pull_request: branches: - master - - v1.8.2+RAI - - v1.9.2+RAI + - v1.8.2\+RAI + - v1.9.2\+RAI concurrency: # Cancels pending runs when a PR gets updated.