From d43a46cc96f64426dd7e5c89be9f0e14ee042a0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eren=20G=C3=B6lge?= Date: Mon, 8 Mar 2021 11:51:03 +0100 Subject: [PATCH] CI 'ci skip' check --- .github/workflows/main.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2a73a052..22d818c2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,8 +8,13 @@ on: pull_request: types: [opened, synchronize, reopened] jobs: - test: + check_skip: + runs-on: ubuntu-latest + if: "! contains(github.event.head_commit.message, '[ci skip]')" + steps: + - run: echo "${{ github.event.head_commit.message }}" + test: runs-on: ubuntu-latest strategy: fail-fast: false