Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlovetox <philipp@hoerist.com>2022-05-11 22:27:12 +0300
committerlovetox <philipp@hoerist.com>2022-05-11 22:27:12 +0300
commit3df84466e5d0b62717073667b9da32d75a3038b2 (patch)
tree5c4b6c2852e8fc9dfd249096cf135de307bded90 /.githooks
parentbc7861fce94b40f5f83f63c02fbe9f313e55b686 (diff)
ci: Add allowed commit tag
Diffstat (limited to '.githooks')
-rwxr-xr-x.githooks/update12
1 files changed, 11 insertions, 1 deletions
diff --git a/.githooks/update b/.githooks/update
index e274919ad..d05283078 100755
--- a/.githooks/update
+++ b/.githooks/update
@@ -9,7 +9,17 @@ import sys
import subprocess
-ALLOWED_TAGS = ['ci', 'feat', 'fix', 'perf', 'refactor', 'chore', 'other']
+ALLOWED_TAGS = [
+ 'ci',
+ 'feat',
+ 'fix',
+ 'perf',
+ 'refactor',
+ 'chore',
+ 'release',
+ 'other',
+]
+
def parse_args() -> Tuple[str, str]: