Skip to content

Commit 0976985

Browse files
authored
Update pr-create-release.yml
Minor bit of nuance from https://docs.github.com/en/actions/reference/workflows-and-actions/expressions#literals (emphasis mine): > You don't need to enclose strings in `${{` and `}`}. *However, if you do, you must use single quotes (`'`) around the string.* [...] Signed-off-by: Claudia Meadows <[email protected]>
1 parent f394e2a commit 0976985

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pr-create-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ permissions:
88
jobs:
99
comment:
1010
# Don't auto-close actual release PRs
11-
if: ${{github.actor != 'JAForbes' || !contains(github.event.issue.title, "Release - v")}}
11+
if: ${{github.actor != 'JAForbes' || !contains(github.event.issue.title, 'Release - v')}}
1212
uses: MithrilJS/infra/.github/workflows/reject-pr.yml@main
1313
secrets: inherit

0 commit comments

Comments
 (0)