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: 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

View File

@ -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