From ed7c0d7c1bdafa7b71ef3ce1fcbd2ad9bfe37fa5 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Mon, 19 Apr 2021 04:51:35 -0700 Subject: [PATCH] tools: skip macOS GitHub Actions test on doc-only changes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We skip macOS GitHub Actions pushes on doc-only changes but the intention was no doubt to skip them on pull requests too. We still run the tests on Linux, so addons tests will still run when addons docs change. PR-URL: https://github.com/nodejs/node/pull/38296 Reviewed-By: Richard Lau Reviewed-By: Antoine du Hamel Reviewed-By: Michaƫl Zasso Reviewed-By: Benjamin Gruenbaum Reviewed-By: Darshan Sen --- .github/workflows/test-macos.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml index 40d25f7df9833f..9a774d966324ff 100644 --- a/.github/workflows/test-macos.yml +++ b/.github/workflows/test-macos.yml @@ -2,6 +2,8 @@ name: test-macOS on: pull_request: + paths-ignore: + - 'doc/**' push: branches: - master