commit: d3871fa3600070f909eba61699c6e36d68f8de4d
parent 27a8f6a8d9a1825d3669d2d55add47e0c3e58445
Author: Tusooa Zhu <tusooa@kazv.moe>
Date: Sun, 28 Aug 2022 09:57:32 -0400
Allow to explicitly skip changelog
Diffstat:
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
@@ -44,7 +44,7 @@ check-changelog:
rules:
- if: $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "develop"
script:
- - count=0; for i in changelog.d/"$CI_MERGE_REQUEST_IID".{add,remove,fix,security}; do [ -f "$i" ]; count=$(( $count + 1 - $? )); done; [ $count -eq 1 ]
+ - count=0; for i in changelog.d/"$CI_MERGE_REQUEST_IID".{add,remove,fix,security,skip}; do [ -f "$i" ]; count=$(( $count + 1 - $? )); done; [ $count -eq 1 ]
build:
stage: build
diff --git a/changelog.d/3739.skip b/changelog.d/3739.skip