Run github workflow actions on release branches
authorBernd Schubert <bernd@bsbernd.com>
Wed, 1 Jan 2025 20:41:17 +0000 (21:41 +0100)
committerBernd Schubert <bernd@bsbernd.com>
Mon, 10 Feb 2025 15:56:45 +0000 (16:56 +0100)
Running on the 'master' is not enough, actions also
need to run on release branches.

Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
.github/workflows/abicheck.yml
.github/workflows/codeql.yml
.github/workflows/codespell.yml
.github/workflows/pr-ci.yml

index 23859d0b9446880973b3a6cf32c00652dd420353..c75d912cf3e46fa0944cf57c3c3b6ae735a5b962 100644 (file)
@@ -5,10 +5,11 @@ on:
   push:
     branches:
       - master
+      - '[0-9]+.[0-9]+'  # This will match branches like 3.17, 3.18, 4.0, etc.
   pull_request:
     branches:
       - master
-
+      - '[0-9]+.[0-9]+'
 permissions:
   contents: read
 
index 1cccb5f13bbe2f33a71a8473e50353ee3d2665f4..b4c6fc1753c6c368eecc83d1af38ab3d80362cb7 100644 (file)
@@ -13,9 +13,13 @@ name: "CodeQL Advanced"
 
 on:
   push:
-    branches: [ "master" ]
+    branches:
+      - master
+      - '[0-9]+.[0-9]+'  # This will match branches like 3.17, 3.18, 4.0, etc.
   pull_request:
-    branches: [ "master" ]
+    branches:
+      - master
+      - '[0-9]+.[0-9]+'
 
 jobs:
   analyze:
index 472bf6a8c2178c0de446f73508f4bb00e5623400..045bb207fb3d50fd50438f26d54cd2a9dff78976 100644 (file)
@@ -3,9 +3,13 @@ name: Codespell
 
 on:
   push:
-    branches: [master]
+    branches:
+      - master
+      - '[0-9]+.[0-9]+'  # This will match branches like 3.17, 3.18, 4.0, etc.
   pull_request:
-    branches: [master]
+    branches:
+      - master
+      - '[0-9]+.[0-9]+'
 
 permissions:
   contents: read
index 54d30ac595edb45526e93e2b4838fe5ce3db21db..bec61662195c3c7fec6cf72af8cab8915173ba93 100644 (file)
@@ -4,9 +4,11 @@ on:
   push:
     branches:
       - master
+      - '[0-9]+.[0-9]+'  # This will match branches like 3.17, 3.18, 4.0, etc.
   pull_request:
     branches:
       - master
+      - '[0-9]+.[0-9]+'
 
 permissions:
   contents: read