diff options
author | Bernd Schubert <bernd@bsbernd.com> | 2025-02-18 21:45:05 +0100 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-02-18 22:32:49 +0100 |
commit | d7507b4d6f1d126c0bd25dd947a40d9f064658cf (patch) | |
tree | 0dba0280244926510250bcb44bcd57c5b40c7ffc /.github/workflows/abicheck.yml | |
parent | cf4170fcea5b23b22352a1915f77e69a90f80520 (diff) | |
download | libfuse-d7507b4d6f1d126c0bd25dd947a40d9f064658cf.tar.gz |
github ci tests: Update the stable branch name to include fuse-
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>
Diffstat (limited to '.github/workflows/abicheck.yml')
-rw-r--r-- | .github/workflows/abicheck.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/abicheck.yml b/.github/workflows/abicheck.yml index 526fb42..10a8e6d 100644 --- a/.github/workflows/abicheck.yml +++ b/.github/workflows/abicheck.yml @@ -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 |