Skip to content

Commit

Permalink
Don't run tests if only docs change
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Jul 18, 2024
1 parent e7c3b9c commit 71b428e
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: C

on:
push:
paths-ignore:
- 'docs/**'
- 'README.rst'
schedule:
- cron: "0 0 1 * *"

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ concurrency:

on:
push:
paths-ignore:
- 'docs/**'
- 'README.rst'
branches: [ "master" ]
pull_request:
branches: [ "master" ]
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/csharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: C#

on:
push:
paths-ignore:
- 'docs/**'
- 'README.rst'
schedule:
- cron: "0 0 1 * *"

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ name: ESLint

on:
push:
paths-ignore:
- 'docs/**'
- 'README.rst'
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/javascript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: JS

on:
push:
paths-ignore:
- 'docs/**'
- 'README.rst'
schedule:
- cron: "0 0 1 * *"

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Py

on:
push:
paths-ignore:
- 'docs/**'
- 'README.rst'
schedule:
- cron: "0 0 1 * *"

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/rust-clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ name: Rust-Clippy

on:
push:
paths-ignore:
- 'docs/**'
- 'README.rst'
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Rs

on:
push:
paths-ignore:
- 'docs/**'
- 'README.rst'
schedule:
- cron: "0 0 1 * *"

Expand Down

0 comments on commit 71b428e

Please sign in to comment.