Update trigger conditions
- Only run when changes are made on files inside 'sunshine' directory - Prevents workflow from running again when this workflow pushes changes back into 'locale' directory - Should be cleaner than using 'paths-ignore'
This commit is contained in:
parent
01155ef4a3
commit
f1d82a7d09
1 changed files with 2 additions and 2 deletions
4
.github/workflows/localize.yml
vendored
4
.github/workflows/localize.yml
vendored
|
|
@ -3,8 +3,8 @@ name: localize
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [nightly]
|
branches: [nightly]
|
||||||
paths-ignore:
|
paths: # prevents workflow from running again when this workflow pushes changes back into 'locale' directory
|
||||||
- 'locale/**'
|
- 'sunshine/**' # only localizing files inside sunshine directory
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue