diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/builds.yml | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index db71c8d..afc2d7e 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -1,6 +1,22 @@ name: Builds -on: [push, pull_request] +on: + push: + paths-ignore: + - '.github/**' + - '.vscode/**' + - 'docs/**' + - 'LICENSE-EXCEPTIONS.md' + - 'LICENSE.md' + - 'README.md' + pull_request: + paths-ignore: + - '.github/**' + - '.vscode/**' + - 'docs/**' + - 'LICENSE-EXCEPTIONS.md' + - 'LICENSE.md' + - 'README.md' env: GODOT_BASE_DOWNLOAD_URL: https://github.com/godotengine/godot |