ci: remove needless quotes

This commit is contained in:
alexey.lysiuk 2022-07-02 11:02:25 +03:00
parent 97f098612d
commit c8f0ae9cb5
3 changed files with 5 additions and 5 deletions

View file

@ -5,9 +5,9 @@ on: [push, pull_request]
jobs:
build:
if: "${{ !contains(github.event.head_commit.message, '[skip build]') }}"
if: "!contains(github.event.head_commit.message, '[skip build]')"
name: ${{ matrix.target }} / ${{ matrix.flavor.name }}
runs-on: "macos-12"
runs-on: macos-12
strategy:
fail-fast: false
matrix:

View file

@ -5,7 +5,7 @@ on: [push, pull_request]
jobs:
lint:
if: "${{ !contains(github.event.head_commit.message, '[skip lint]') }}"
if: "!contains(github.event.head_commit.message, '[skip lint]')"
runs-on: ubuntu-20.04
steps:
- name: Checkout

View file

@ -5,8 +5,8 @@ on: [push, pull_request]
jobs:
test:
if: "${{ !contains(github.event.head_commit.message, '[skip test]') }}"
runs-on: "macos-12"
if: "!contains(github.event.head_commit.message, '[skip test]')"
runs-on: macos-12
steps:
- uses: actions/checkout@v3