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:33 +0100 |
| commit | 21c87768e400d46c3f7c38edba2f338b7476b0c2 (patch) | |
| tree | 3c51e100292d7278f9e710bbcad6dd9552743589 /.github/workflows/pr-ci.yml | |
| parent | 38cfa386d5397e54817b684a60228a8ee1a3f48d (diff) | |
| download | libfuse-21c87768e400d46c3f7c38edba2f338b7476b0c2.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/pr-ci.yml')
| -rw-r--r-- | .github/workflows/pr-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/pr-ci.yml b/.github/workflows/pr-ci.yml index ccaaf72..4bb7f66 100644 --- a/.github/workflows/pr-ci.yml +++ b/.github/workflows/pr-ci.yml @@ -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 |
