Skip to content

Commit

Permalink
tools: ignore unrelated workflow changes in slow Actions tests
Browse files Browse the repository at this point in the history
Changes in the workflow files never affect the node binary, running
build tasks seems unnecessary.

Refs: nodejs#40928
  • Loading branch information
aduh95 committed Nov 27, 2021
1 parent a257294 commit 5205d66
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-windows.yml
Expand Up @@ -4,6 +4,8 @@ on:
pull_request:
paths-ignore:
- "README.md"
- .github/**
- '!.github/workflows/build-windows.yml'
types: [opened, synchronize, reopened, ready_for_review]
push:
branches:
Expand All @@ -14,6 +16,8 @@ on:
- v[0-9]+.x
paths-ignore:
- "README.md"
- .github/**
- '!.github/workflows/build-windows.yml'

env:
PYTHON_VERSION: '3.10'
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/coverage-linux.yml
Expand Up @@ -8,6 +8,8 @@ on:
- 'benchmark/**'
- 'deps/**'
- 'doc/**'
- .github/**
- '!.github/workflows/coverage-linux.yml'
push:
branches:
- master
Expand All @@ -17,6 +19,8 @@ on:
- 'benchmark/**'
- 'deps/**'
- 'doc/**'
- .github/**
- '!.github/workflows/coverage-linux.yml'

env:
PYTHON_VERSION: '3.10'
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/coverage-windows.yml
Expand Up @@ -9,6 +9,8 @@ on:
- 'deps/**'
- 'doc/**'
- 'tools/**'
- .github/**
- '!.github/workflows/coverage-windows.yml'
push:
branches:
- master
Expand All @@ -19,6 +21,8 @@ on:
- 'deps/**'
- 'doc/**'
- 'tools/**'
- .github/**
- '!.github/workflows/coverage-windows.yml'

env:
PYTHON_VERSION: '3.10'
Expand Down

0 comments on commit 5205d66

Please sign in to comment.