diff options
author | Anna (navi) Figueiredo Gomes <navi@vlhl.dev> | 2025-04-12 21:07:31 +0200 |
---|---|---|
committer | Anna (navi) Figueiredo Gomes <navi@vlhl.dev> | 2025-04-12 21:43:46 +0200 |
commit | 725d92b8f2dd148b52573a71b9b50927a68bfa2a (patch) | |
tree | 0e3d591f48f36fb70af8bfa5f935fd747f82db98 | |
parent | 559d8f3747647aecab86adc03ec46b7ff45d19c7 (diff) |
rc: don't run tests on pushed to non-master branchesorigin/tests
-rw-r--r-- | .github/workflows/ci-alpine-linux.yml | 6 | ||||
-rw-r--r-- | .github/workflows/ci-ubuntu.yml | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/.github/workflows/ci-alpine-linux.yml b/.github/workflows/ci-alpine-linux.yml index e50c9765..485e2171 100644 --- a/.github/workflows/ci-alpine-linux.yml +++ b/.github/workflows/ci-alpine-linux.yml @@ -1,6 +1,10 @@ name: ci_alpine_linux -on: [push, pull_request] +on: + push: + branches: [master] + pull_request: + branches: [master] jobs: diff --git a/.github/workflows/ci-ubuntu.yml b/.github/workflows/ci-ubuntu.yml index 401b5f6b..ab0110e3 100644 --- a/.github/workflows/ci-ubuntu.yml +++ b/.github/workflows/ci-ubuntu.yml @@ -1,6 +1,10 @@ name: ci_ubuntu -on: [push, pull_request] +on: + push: + branches: [master] + pull_request: + branches: [master] jobs: |