From 533f308f47cef43dd822100cc84ab76941b10e11 Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Mon, 22 Jan 2018 18:14:31 +0000 Subject: [PATCH] CI: Don't require an issue for release PRs Change the `checkcommits` config to not require an issue for release PRs. Fixes #28. Signed-off-by: James O. D. Hunt --- .ci/static-checks.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.ci/static-checks.sh b/.ci/static-checks.sh index 6d263bee4b..6dcf271549 100755 --- a/.ci/static-checks.sh +++ b/.ci/static-checks.sh @@ -19,6 +19,7 @@ self="$GOPATH/src/github.com/kata-containers/tests" checkcommits \ --need-fixes \ --need-sign-offs \ + --ignore-fixes-for-subsystem "release" \ --verbose go_packages=$(go list ./... 2>/dev/null || true)