Skip to content

Commit 5124ae2

Browse files
committed
Use single quotes in the if condition for job
1 parent 1011217 commit 5124ae2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/spring-backport-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
backport-issue:
1111
runs-on: ubuntu-latest
12-
if: {{ contains(github.event.head_commit.message, "Fixes: ") || contains(github.event.head_commit.message, "Closes: ") }}
12+
if: {{ contains(github.event.head_commit.message, 'Fixes: ') || contains(github.event.head_commit.message, 'Closes: ') }}
1313
steps:
1414

1515
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)