fix(actions): typo on paths filtering (#3516)
The keyword is `paths` and the actions were using `path` That's the reason why most actions have been running, and there's been no impact in time savings
This commit is contained in:
parent
9ede0fb52a
commit
fd8c727c31
|
@ -2,7 +2,7 @@ name: CI
|
|||
|
||||
on:
|
||||
pull_request:
|
||||
path-ignore:
|
||||
paths-ignore:
|
||||
- '**/*.rs'
|
||||
- '**/*.txt'
|
||||
- '**/Cargo.toml'
|
||||
|
|
|
@ -3,7 +3,7 @@ name: CI
|
|||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
path:
|
||||
paths:
|
||||
- '**/*.rs'
|
||||
- '**/*.txt'
|
||||
- '**/Cargo.toml'
|
||||
|
|
|
@ -3,7 +3,7 @@ name: Coverage
|
|||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
path-ignore:
|
||||
paths-ignore:
|
||||
- '**/*.rs'
|
||||
- '**/*.txt'
|
||||
- '**/Cargo.toml'
|
||||
|
|
|
@ -3,7 +3,7 @@ name: Coverage
|
|||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
path:
|
||||
paths:
|
||||
- '**/*.rs'
|
||||
- '**/*.txt'
|
||||
- '**/Cargo.toml'
|
||||
|
|
|
@ -5,7 +5,7 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- main
|
||||
path-ignore:
|
||||
paths-ignore:
|
||||
- 'book/**'
|
||||
- '**/firebase.json'
|
||||
- 'katex-header.html'
|
||||
|
|
|
@ -5,7 +5,7 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- main
|
||||
path:
|
||||
paths:
|
||||
- 'book/**'
|
||||
- '**/firebase.json'
|
||||
- 'katex-header.html'
|
||||
|
|
|
@ -5,7 +5,7 @@ on:
|
|||
branches:
|
||||
- "**"
|
||||
- "!main"
|
||||
path-ignore:
|
||||
paths-ignore:
|
||||
- '**/*.rs'
|
||||
- '**/Cargo.toml'
|
||||
- '**/Cargo.lock'
|
||||
|
|
|
@ -5,7 +5,7 @@ on:
|
|||
branches:
|
||||
- "**"
|
||||
- "!main"
|
||||
path:
|
||||
paths:
|
||||
- '**/*.rs'
|
||||
- '**/Cargo.toml'
|
||||
- '**/Cargo.lock'
|
||||
|
|
|
@ -5,7 +5,7 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- main
|
||||
path-ignore:
|
||||
paths-ignore:
|
||||
- '**/*.rs'
|
||||
- '**/*.txt'
|
||||
- '**/Cargo.toml'
|
||||
|
|
|
@ -5,7 +5,7 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- main
|
||||
path:
|
||||
paths:
|
||||
- '**/*.rs'
|
||||
- '**/*.txt'
|
||||
- '**/Cargo.toml'
|
||||
|
|
|
@ -5,7 +5,7 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- 'main'
|
||||
path:
|
||||
paths:
|
||||
- 'zebra-consensus/src/primitives/groth16/params.rs'
|
||||
- 'zebra-consensus/src/chain.rs'
|
||||
- 'zebrad/src/commands/start.rs'
|
||||
|
|
Loading…
Reference in New Issue