diff options
author | George L. Albany <Megacake1234@gmail.com> | 2024-02-05 20:03:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-05 20:03:11 +0100 |
commit | 0ed206d613109dad159e51f677bd1b56e9e5bd3e (patch) | |
tree | 8fa9066f64d3c3310687f0201287b801812b5833 | |
parent | 576986af57db806af284bbc05a799e72f113f35c (diff) | |
parent | 2a143b66f7e546eda36d734b4b28b9c7ead22d24 (diff) |
Merge pull request #204 from Spartan322/limit/workflow-runs
Add workflow run limitations
-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 |