fixed type

This commit is contained in:
Jakub Chrzanowski 2020-12-18 12:25:07 +01:00
parent 50f6fd13aa
commit 491c96eeb0

View File

@ -266,7 +266,7 @@ You can disable specific tests using the [`if`][github-actions-if] condition, li
jobs:
test:
name: Test
if: "!contains(github.event.head_commit.message, 'skip ci')
if: "!contains(github.event.head_commit.message, 'skip ci')"
steps:
...
```