Skip to content

Commit 4221136

Browse files
committed
build: update condition
1 parent ccef388 commit 4221136

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/slash_commands.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,10 @@ jobs:
201201
needs: [ add_initial_reaction, check_files, update_copyright_years, fix_lint_errors, merge_develop, rebase_develop, help ]
202202

203203
# Define the conditions under which the job should run:
204-
if: github.event.issue.pull_request && startsWith( github.event.comment.body, '/stdlib' )
204+
if: |
205+
always() &&
206+
github.event.issue.pull_request &&
207+
startsWith(github.event.comment.body, '/stdlib')
205208
206209
# Define the job's steps:
207210
steps:

0 commit comments

Comments
 (0)