diff options
Diffstat (limited to '.github/workflows/codespell.yml')
-rw-r--r-- | .github/workflows/codespell.yml | 8 |
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 |