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:
otavepto 2024-05-10 19:53:02 +03:00
parent c477a031ac
commit a23679f150
2 changed files with 20 additions and 20 deletions

View File

@ -11,17 +11,17 @@ on:
pull_request:
branches: [ "dev" ]
paths:
- '!**/*.md'
- '!dev.notes/**'
- '!post_build/**'
- '!z_original_repo_files/**'
- '!sdk/*.txt'
- '!LICENSE'
paths-ignore:
- '**/*.md'
- 'dev.notes/**'
- 'post_build/**'
- 'z_original_repo_files/**'
- 'sdk/*.txt'
- 'LICENSE'
# tools
- '!tools/generate_emu_config/**'
- '!tools/migrate_gse/**'
- '!tools/steamclient_loader/linux/**' # these are just shell scripts, not compiled
- 'tools/generate_emu_config/**'
- 'tools/migrate_gse/**'
- 'tools/steamclient_loader/linux/**' # these are just shell scripts, not compiled
workflow_dispatch:
# allows manual trigger

View File

@ -11,17 +11,17 @@ on:
pull_request:
branches: [ "dev" ]
paths:
- '!**/*.md'
- '!dev.notes/**'
- '!post_build/**'
- '!z_original_repo_files/**'
- '!sdk/*.txt'
- '!LICENSE'
paths-ignore:
- '**/*.md'
- 'dev.notes/**'
- 'post_build/**'
- 'z_original_repo_files/**'
- 'sdk/*.txt'
- 'LICENSE'
# tools
- '!tools/generate_emu_config/**'
- '!tools/migrate_gse/**'
- '!tools/steamclient_loader/linux/**'
- 'tools/generate_emu_config/**'
- 'tools/migrate_gse/**'
- 'tools/steamclient_loader/linux/**'
workflow_dispatch:
# allows manual trigger