Skip to content

Commit 4c6d1ed

Browse files
Put if expressio on one line, otherwise GH actions doesn't like it
1 parent edbd01b commit 4c6d1ed

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/draft-new-release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
# Only run for issues with a specific title and label. Not strictly required but makes finding the release issue again later easier.
1212
# There is also a whitelist that you may want to use to restrict, who can trigger this workflow.
13-
if: startsWith(github.event.issue.title, 'Release version') && \
14-
contains(github.event.issue.labels.*.name, 'release') && \
15-
contains(['thomaseizinger'], github.event.issue.user.login)
13+
if: startsWith(github.event.issue.title, 'Release version') && contains(github.event.issue.labels.*.name, 'release') && contains(['thomaseizinger'], github.event.issue.user.login)
1614
steps:
1715
- uses: actions/checkout@v2
1816

0 commit comments

Comments
 (0)