summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/git-commit-message-style.yml
diff options
context:
space:
mode:
authorJoakim Hulthe <joakim@hulthe.net>2025-08-19 11:52:08 +0200
committerJoakim Hulthe <joakim.hulthe@mullvad.net>2025-08-19 13:02:27 +0200
commit35272e3c1a04159dd549f825ca3d40cfe664c30f (patch)
tree4eeb27d105ed7af0981bf73111b85746de72e2f2 /.github/workflows/git-commit-message-style.yml
parent63c42677083d48e70c3149f367d0232b6a4405fe (diff)
downloadmullvadvpn-35272e3c1a04159dd549f825ca3d40cfe664c30f.tar.xz
mullvadvpn-35272e3c1a04159dd549f825ca3d40cfe664c30f.zip
Signal wireguard-go to exit gracefully when test-manager exits
`Command::kill_on_drop` would send a SIGKILL to the `sudo`-process, which does not propagate to the wireguard-go child process. This is resolved by sending a SIGTERM instead.
Diffstat (limited to '.github/workflows/git-commit-message-style.yml')
-rw-r--r--.github/workflows/git-commit-message-style.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/git-commit-message-style.yml b/.github/workflows/git-commit-message-style.yml
index 6f93ea9d40..3903db9ca4 100644
--- a/.github/workflows/git-commit-message-style.yml
+++ b/.github/workflows/git-commit-message-style.yml
@@ -34,4 +34,5 @@ jobs:
# This action defaults to 50 char subjects, but 72 is fine.
max-subject-line-length: '72'
# The action's wordlist is a bit short. Add more accepted verbs
- additional-verbs: 'tidy, wrap, obfuscate, bias, prohibit, forbid, revert, slim, impl, disregard, reproduce'
+ additional-verbs: 'tidy, wrap, obfuscate, bias, prohibit, forbid, revert, slim, impl, disregard, reproduce,
+ signal'