From a0ede80f9452a86946b840c971d2f981ee68d0db Mon Sep 17 00:00:00 2001 From: Kentaro Hayashi Date: Tue, 20 Aug 2024 16:37:01 +0900 Subject: [PATCH] github: backport suppress running CI only for documentation (#4608) For updating documentation or release task, running GitHub Actions is waste of resource. https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#onpushpull_requestpull_request_targetpathspaths-ignore Signed-off-by: Kentaro Hayashi --- .github/workflows/test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 666aa97b86..2869d32c6d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,8 +3,14 @@ name: Test on: push: branches: [v1.16] + paths-ignore: + - '*.md' + - 'lib/fluent/version.rb' pull_request: branches: [v1.16] + paths-ignore: + - '*.md' + - 'lib/fluent/version.rb' jobs: test: