From 843cb8101c38d4cb17270bf93a15e904389176a6 Mon Sep 17 00:00:00 2001 From: Lovro Bikic Date: Thu, 12 Aug 2021 19:49:54 +0200 Subject: [PATCH] Exclude documentation from CI workflow --- .github/workflows/ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1142fc8c..a5345750 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,5 +1,13 @@ name: CI -on: [push, pull_request] +on: + push: + paths-ignore: + - 'docs/**' + - '**.md' + pull_request: + paths-ignore: + - 'docs/**' + - '**.md' jobs: test: name: Ruby ${{ matrix.ruby }} (${{ matrix.os }})