Skip to content

Commit

Permalink
github ci tests: Update the stable branch name to include fuse-
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
bsbernd committed Feb 18, 2025
1 parent e2c905f commit a14bcce
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/abicheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/checkpatch.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
name: Checkpatch

on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
branches:
- master
permissions:
contents: read

jobs:
checkpatch:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a14bcce

Please sign in to comment.