diff options
author | Spartan322 <Megacake1234@gmail.com> | 2024-02-05 16:40:23 +0100 |
---|---|---|
committer | Spartan322 <Megacake1234@gmail.com> | 2024-02-05 16:40:23 +0100 |
commit | 2a143b66f7e546eda36d734b4b28b9c7ead22d24 (patch) | |
tree | 8fa9066f64d3c3310687f0201287b801812b5833 /.github/workflows | |
parent | 576986af57db806af284bbc05a799e72f113f35c (diff) |
Add workflow run limitations
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 |