From d348ea034fb2e46faa3e630c744e3be9707ea333 Mon Sep 17 00:00:00 2001 From: Dan Allen Date: Sun, 16 Feb 2020 03:33:51 -0700 Subject: add support for [skip ci] hint to GitHub Actions (PR #1559) --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to '.github/workflows') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c02153a..c43aedcf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,13 @@ name: CI on: [push, pull_request] jobs: + activate: + runs-on: ubuntu-latest + if: "! endsWith(github.event.head_commit.message, '[skip ci]')" + steps: + - run: echo ok go build: + needs: activate runs-on: windows-latest strategy: matrix: -- cgit v1.2.3