Skip to content

Commit

Permalink
experiment 6
Browse files Browse the repository at this point in the history
[run-slow-tests]
  • Loading branch information
ckunki committed May 22, 2024
1 parent e1bf00e commit e3519aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- name: Examine Commit Message in ci-pr
run: |
if (git log -1 --pretty=format:"%s" | grep "[run-slow-tests]"); then
if (git log -1 --pretty=format:"%s" | grep "\[run-slow-tests\]"); then
echo 'RUN_SLOW_TESTS=-m "not slow"' >> $GITHUB_ENV
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- name: Examine Commit Message
run: |
if (git log -1 --pretty=format:"%s" | grep "[run-slow-tests]"); then
if (git log -1 --pretty=format:"%s" | grep "\[run-slow-tests\]"); then
echo 'RUN_SLOW_TESTS=-m "not slow"' >> $GITHUB_ENV
fi
Expand Down

0 comments on commit e3519aa

Please sign in to comment.