summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2024-03-19 10:38:44 +0100
committerLinus Färnstrand <linus@mullvad.net>2024-03-19 10:38:44 +0100
commitf13bbbdd5d5e0d598f656549bf78d5c5fd4d5a88 (patch)
tree2faf8ea136d803cea77a4e6c4cafc8c85bc56068
parentebda07474f32642eb020d49f12dc5722984df133 (diff)
parent7424b9373e35d8f530d773d708c03126d6b2a741 (diff)
downloadmullvadvpn-f13bbbdd5d5e0d598f656549bf78d5c5fd4d5a88.tar.xz
mullvadvpn-f13bbbdd5d5e0d598f656549bf78d5c5fd4d5a88.zip
Merge branch 'add-git-commit-message-verbs'
-rw-r--r--.github/workflows/git-commit-message-style.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/git-commit-message-style.yml b/.github/workflows/git-commit-message-style.yml
index 76a53a0e77..6b5323b6cb 100644
--- a/.github/workflows/git-commit-message-style.yml
+++ b/.github/workflows/git-commit-message-style.yml
@@ -9,13 +9,15 @@ jobs:
name: Check commit message style
runs-on: ubuntu-latest
steps:
- - name: Check against guidlines
+ - name: Check against guidelines
uses: mristin/opinionated-commit-message@v3.1.0
with:
# Commit messages are allowed to be subject only, no body
allow-one-liners: 'true'
# This action defaults to 50 char subjects, but 74 is fine.
max-subject-line-length: '74'
+ # The action's wordlist is a bit short. Add more accepted verbs
+ additional-verbs: 'restart, coalesce'
- name: Check for unicode whitespaces
uses: gsactions/commit-message-checker@v2