From 02b6dd4b654e32effc5ea9f3f8f774f2a82b38a9 Mon Sep 17 00:00:00 2001 From: Pierre Smeyers <pierre.smeyers@gmail.com> Date: Sun, 28 Jan 2024 22:14:53 +0100 Subject: [PATCH] fix: <SEMREL_RELEASE_DISABLED/release-disabled> type --- kicker.json | 5 ----- templates/gitlab-ci-semrel.yml | 5 +++-- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/kicker.json b/kicker.json index 0faad48..1f6712e 100644 --- a/kicker.json +++ b/kicker.json @@ -88,11 +88,6 @@ "default": ".", "advanced": true }, - { - "name": "SEMREL_RELEASE_DISABLED", - "description": "Disable this job.", - "advanced": true - }, { "name": "SEMREL_GPG_SIGNKEY", "description": "Path to the GPG signkey exported with `gpg --armor --export-secret-key`.", diff --git a/templates/gitlab-ci-semrel.yml b/templates/gitlab-ci-semrel.yml index 6d5b663..9741de7 100644 --- a/templates/gitlab-ci-semrel.yml +++ b/templates/gitlab-ci-semrel.yml @@ -35,8 +35,9 @@ spec: description: Full path to `semrel-required-plugins.txt` file _(relative to `$CI_PROJECT_DIR`)_ default: semrel-required-plugins.txt release-disabled: - description: Disable this job. - default: '' + description: Disable semantic-release + type: boolean + default: false changelog-enabled: description: Add the [@semantic-release/changelog](https://github.com/semantic-release/changelog) plugin which will commit a changelog file in the repository. type: boolean -- GitLab