mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-03 19:52:36 +00:00
unbreak CI: fix logic for skipping ci (#15556)
This commit is contained in:
2
.github/workflows/ci_docs.yml
vendored
2
.github/workflows/ci_docs.yml
vendored
@@ -29,7 +29,7 @@ on:
|
||||
jobs:
|
||||
build:
|
||||
if: |
|
||||
!contains(format('{0} {1} {2}', github.event.head_commit.message, github.event.pull_request.title), '[skip ci]')
|
||||
!contains(format('{0} {1}', github.event.head_commit.message, github.event.pull_request.title), '[skip ci]')
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
||||
2
.github/workflows/ci_packages.yml
vendored
2
.github/workflows/ci_packages.yml
vendored
@@ -4,7 +4,7 @@ on: [push, pull_request]
|
||||
jobs:
|
||||
build:
|
||||
if: |
|
||||
!contains(format('{0} {1} {2}', github.event.head_commit.message, github.event.pull_request.title), '[skip ci]')
|
||||
!contains(format('{0} {1}', github.event.head_commit.message, github.event.pull_request.title), '[skip ci]')
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
||||
2
.github/workflows/ci_ssl.yml
vendored
2
.github/workflows/ci_ssl.yml
vendored
@@ -13,7 +13,7 @@ on:
|
||||
jobs:
|
||||
build:
|
||||
if: |
|
||||
!contains(format('{0} {1} {2}', github.event.head_commit.message, github.event.pull_request.title), '[skip ci]')
|
||||
!contains(format('{0} {1}', github.event.head_commit.message, github.event.pull_request.title), '[skip ci]')
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
||||
Reference in New Issue
Block a user