Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2021-11-27 04:18:37 +0300
committerGitHub <noreply@github.com>2021-11-27 04:18:37 +0300
commite64c66c1a9fbdc06eaa4c76785178cd20c58c240 (patch)
tree6d0b051038f19a32f01f8df5535e899d270e354e /.github
parent49b8c4f08b8961a61619043d80cc514474f3123d (diff)
build: ignore unrelated workflow changes in slow Actions tests
test-asan and test-macos are very slow and tend to get backed up. While I'm literally waiting hours right now for test-macos to finish so I can land a PR, I'm opening this pull request to have it be skipped when things other than its own workflow file are the only changes in the PR. PR-URL: https://github.com/nodejs/node/pull/40928 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test-asan.yml4
-rw-r--r--.github/workflows/test-linux.yml4
-rw-r--r--.github/workflows/test-macos.yml4
3 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/test-asan.yml b/.github/workflows/test-asan.yml
index 021747ace19..8965e38dd09 100644
--- a/.github/workflows/test-asan.yml
+++ b/.github/workflows/test-asan.yml
@@ -8,6 +8,8 @@ on:
- '**.md'
- 'AUTHORS'
- 'doc/**'
+ - .github/**
+ - '!.github/workflows/test-asan.yml'
push:
branches:
- master
@@ -20,6 +22,8 @@ on:
- '**.md'
- 'AUTHORS'
- 'doc/**'
+ - .github/**
+ - '!.github/workflows/test-asan.yml'
env:
PYTHON_VERSION: '3.10'
diff --git a/.github/workflows/test-linux.yml b/.github/workflows/test-linux.yml
index b7dce4dd8a9..374bf747790 100644
--- a/.github/workflows/test-linux.yml
+++ b/.github/workflows/test-linux.yml
@@ -4,6 +4,8 @@ on:
pull_request:
paths-ignore:
- "README.md"
+ - .github/**
+ - '!.github/workflows/test-linux.yml'
types: [opened, synchronize, reopened, ready_for_review]
push:
branches:
@@ -14,6 +16,8 @@ on:
- v[0-9]+.x
paths-ignore:
- "README.md"
+ - .github/**
+ - '!.github/workflows/test-linux.yml'
env:
PYTHON_VERSION: '3.10'
diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml
index 6c5e3ab310c..2926c3ed2eb 100644
--- a/.github/workflows/test-macos.yml
+++ b/.github/workflows/test-macos.yml
@@ -8,6 +8,8 @@ on:
- '**.md'
- 'AUTHORS'
- 'doc/**'
+ - .github/**
+ - '!.github/workflows/test-macos.yml'
push:
branches:
- master
@@ -20,6 +22,8 @@ on:
- '**.md'
- 'AUTHORS'
- 'doc/**'
+ - .github/**
+ - '!.github/workflows/test-macos.yml'
env:
PYTHON_VERSION: '3.10'