diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2021-01-09 12:34:04 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2021-01-09 12:34:04 +0530 |
commit | edeedec96ebe18792634f8889becacdd8e344a5c (patch) | |
tree | d77f41a1068a0c30d7c37d8d6537042f239d8f22 | |
parent | a35be7a20f0f36832b73f60b1ef38f548d36c4c6 (diff) | |
download | meson-edeedec96ebe18792634f8889becacdd8e344a5c.zip meson-edeedec96ebe18792634f8889becacdd8e344a5c.tar.gz meson-edeedec96ebe18792634f8889becacdd8e344a5c.tar.bz2 |
ci: Run github workflows on stable branches too
-rw-r--r-- | .github/workflows/nonative.yml | 2 | ||||
-rw-r--r-- | .github/workflows/os_comp.yml | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/nonative.yml b/.github/workflows/nonative.yml index 44eeb9e..fd6045f 100644 --- a/.github/workflows/nonative.yml +++ b/.github/workflows/nonative.yml @@ -4,6 +4,8 @@ on: push: branches: - master + # Stable branches such as 0.56 or the eventual 1.0 + - '[0-9]+.[0-9]+' pull_request: jobs: diff --git a/.github/workflows/os_comp.yml b/.github/workflows/os_comp.yml index bc48b39..dc65fb8 100644 --- a/.github/workflows/os_comp.yml +++ b/.github/workflows/os_comp.yml @@ -4,6 +4,8 @@ on: push: branches: - master + # Stable branches such as 0.56 or the eventual 1.0 + - '[0-9]+.[0-9]+' pull_request: jobs: |