aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/codespell.yml
diff options
context:
space:
mode:
authorBernd Schubert <bernd@bsbernd.com>2025-01-01 21:41:17 +0100
committerBernd Schubert <bernd@bsbernd.com>2025-02-10 16:56:45 +0100
commit3ee8c046c27edb8056e3f3c95fc349cfca75d375 (patch)
tree7f2f8b737dc79cc45a934890cfb2abcf0e2efe3f /.github/workflows/codespell.yml
parentb34e97163221a15a3f6baac1c8ebf9f53f8cad5f (diff)
downloadlibfuse-3ee8c046c27edb8056e3f3c95fc349cfca75d375.tar.gz
Run github workflow actions on release branches
Running on the 'master' is not enough, actions also need to run on release branches. Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
Diffstat (limited to '.github/workflows/codespell.yml')
-rw-r--r--.github/workflows/codespell.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
index 472bf6a..045bb20 100644
--- a/.github/workflows/codespell.yml
+++ b/.github/workflows/codespell.yml
@@ -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