Skip to content

Commit b40af34

Browse files
qinsoonudesou
andauthored
Escape + in the branch name for the workflow trigger (#117)
According to https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onpull_requestpull_request_targetbranchesbranches-ignore, `+` that appears in the branch name needs to be escaped. Co-authored-by: Eduardo Souza <[email protected]>
1 parent a839371 commit b40af34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on:
44
pull_request:
55
branches:
66
- master
7-
- v1.8.2+RAI
8-
- v1.9.2+RAI
7+
- v1.8.2\+RAI
8+
- v1.9.2\+RAI
99

1010
concurrency:
1111
# Cancels pending runs when a PR gets updated.

0 commit comments

Comments
 (0)