From d4f33f109e7c6804f3819a1604a51223d3ea5718 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 65bad59592a452..5f516608c267e4 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