From e858780eda467f2542ac2b2db42f72e729650909 Mon Sep 17 00:00:00 2001 From: Matan Kushner Date: Thu, 10 Oct 2019 16:12:45 +0900 Subject: [PATCH] ci: Disable CI when updating docs --- .github/workflows/workflow.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 72424d1a..75e79506 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -1,5 +1,11 @@ name: Main workflow -on: [push, pull_request] +on: + push: + paths-ignore: + - "docs/**" + - "**/*.md" + pull_request: [] + jobs: # Run the `rustfmt` code formatter rustfmt: