github ci tests: Update the stable branch name to include fuse-
authorBernd Schubert <bernd@bsbernd.com>
Tue, 18 Feb 2025 20:45:05 +0000 (21:45 +0100)
committerBernd Schubert <bernd@bsbernd.com>
Tue, 18 Feb 2025 21:32:49 +0000 (22:32 +0100)
The branch is actually called fuse-3.17.x

Also disable checkpatch for branches except master, as
it is to do basic checks, while stable branches do not
need that check, assuming cherry-pick happens from master.
Issue with it is that persistently complains about dependabot
changes.

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

index 526fb4296c6c843938944afb96e2f85dd2dc456d..10a8e6d981d89a56a01ee5783840e74cb6390209 100644 (file)
@@ -5,11 +5,11 @@ on:
   push:
     branches:
       - master
-      - '[0-9]+.[0-9]+'  # This will match branches like 3.17, 3.18, 4.0, etc.
+      - 'fuse-[0-9]+.[0-9]+*'  # This will match branches like 3.17, 3.18, 4.0, etc.
   pull_request:
     branches:
       - master
-      - '[0-9]+.[0-9]+'
+      - 'fuse-[0-9]+.[0-9]+*'
 permissions:
   contents: read
 
index 1adada4c537df0bc3473da3c9235041eed0e9634..622542c543d2bf28591725d824982a27a83fb66d 100644 (file)
@@ -1,8 +1,14 @@
 name: Checkpatch
 
 on:
+  push:
+    branches:
+      - master
   pull_request:
-    types: [opened, synchronize, reopened]
+    branches:
+      - master
+permissions:
+  contents: read
 
 jobs:
   checkpatch:
index cefd1fcbf17cb0942a559999f411e1eb6f85d3ed..474f2c8d2f9053cfa40b659447706d68d628aea8 100644 (file)
@@ -15,11 +15,11 @@ on:
   push:
     branches:
       - master
-      - '[0-9]+.[0-9]+'  # This will match branches like 3.17, 3.18, 4.0, etc.
+      - 'fuse-[0-9]+.[0-9]+*'  # This will match branches like 3.17, 3.18, 4.0, etc.
   pull_request:
     branches:
       - master
-      - '[0-9]+.[0-9]+'
+      - 'fuse-[0-9]+.[0-9]+*'
 
 jobs:
   analyze:
index 3b771c1ea604ecbd6f217c45cd154b4afedcb634..184fbcfe10140d8b9c6c1e53aeaa20e8395e0da1 100644 (file)
@@ -5,11 +5,11 @@ on:
   push:
     branches:
       - master
-      - '[0-9]+.[0-9]+'  # This will match branches like 3.17, 3.18, 4.0, etc.
+      - 'fuse-[0-9]+.[0-9]+*'  # This will match branches like 3.17, 3.18, 4.0, etc.
   pull_request:
     branches:
       - master
-      - '[0-9]+.[0-9]+'
+      - 'fuse-[0-9]+.[0-9]+*'
 
 permissions:
   contents: read
index ccaaf7231e42952477ea5861b277b51dcf10e987..4bb7f66de5faae884352d6d91cdfcbf5ef3d02a9 100644 (file)
@@ -4,11 +4,11 @@ on:
   push:
     branches:
       - master
-      - '[0-9]+.[0-9]+'  # This will match branches like 3.17, 3.18, 4.0, etc.
+      - 'fuse-[0-9]+.[0-9]+*'  # This will match branches like 3.17, 3.18, 4.0, etc.
   pull_request:
     branches:
       - master
-      - '[0-9]+.[0-9]+'
+      - 'fuse-[0-9]+.[0-9]+*'
 
 permissions:
   contents: read