mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-23 19:25:35 +08:00
fix workflows trigger, apparently paths
works like a filter, if the commit contained a file outside the 'allowed list' it won't trigger, if the commit contained a file in the blacklist it will be ignored and also not triggered
This commit is contained in:
parent
c477a031ac
commit
a23679f150
20
.github/workflows/build-linux.yml
vendored
20
.github/workflows/build-linux.yml
vendored
@ -11,17 +11,17 @@ on:
|
|||||||
|
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ "dev" ]
|
branches: [ "dev" ]
|
||||||
paths:
|
paths-ignore:
|
||||||
- '!**/*.md'
|
- '**/*.md'
|
||||||
- '!dev.notes/**'
|
- 'dev.notes/**'
|
||||||
- '!post_build/**'
|
- 'post_build/**'
|
||||||
- '!z_original_repo_files/**'
|
- 'z_original_repo_files/**'
|
||||||
- '!sdk/*.txt'
|
- 'sdk/*.txt'
|
||||||
- '!LICENSE'
|
- 'LICENSE'
|
||||||
# tools
|
# tools
|
||||||
- '!tools/generate_emu_config/**'
|
- 'tools/generate_emu_config/**'
|
||||||
- '!tools/migrate_gse/**'
|
- 'tools/migrate_gse/**'
|
||||||
- '!tools/steamclient_loader/linux/**' # these are just shell scripts, not compiled
|
- 'tools/steamclient_loader/linux/**' # these are just shell scripts, not compiled
|
||||||
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
# allows manual trigger
|
# allows manual trigger
|
||||||
|
20
.github/workflows/build-win.yml
vendored
20
.github/workflows/build-win.yml
vendored
@ -11,17 +11,17 @@ on:
|
|||||||
|
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ "dev" ]
|
branches: [ "dev" ]
|
||||||
paths:
|
paths-ignore:
|
||||||
- '!**/*.md'
|
- '**/*.md'
|
||||||
- '!dev.notes/**'
|
- 'dev.notes/**'
|
||||||
- '!post_build/**'
|
- 'post_build/**'
|
||||||
- '!z_original_repo_files/**'
|
- 'z_original_repo_files/**'
|
||||||
- '!sdk/*.txt'
|
- 'sdk/*.txt'
|
||||||
- '!LICENSE'
|
- 'LICENSE'
|
||||||
# tools
|
# tools
|
||||||
- '!tools/generate_emu_config/**'
|
- 'tools/generate_emu_config/**'
|
||||||
- '!tools/migrate_gse/**'
|
- 'tools/migrate_gse/**'
|
||||||
- '!tools/steamclient_loader/linux/**'
|
- 'tools/steamclient_loader/linux/**'
|
||||||
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
# allows manual trigger
|
# allows manual trigger
|
||||||
|
Loading…
Reference in New Issue
Block a user