From d35a649351328da5d3311d7efed4f82a2cf18b9a Mon Sep 17 00:00:00 2001 From: Emanuele Stoppa Date: Wed, 17 Apr 2024 09:57:38 +0100 Subject: [PATCH] chore: remove variables from workflows --- knope.toml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/knope.toml b/knope.toml index 627820ec526f..297203de0b0d 100644 --- a/knope.toml +++ b/knope.toml @@ -198,26 +198,22 @@ ignore_conventional_commits = true [[workflows.steps]] type = "Command" # WARNING: if you change this message, remember to update the `prepare_release.yml` too, because it uses this message -command = "git commit -m \"chore: prepare release $version\"" +command = "git commit -m \"chore: prepare release\"" [[workflows.steps]] command = "git push --force --set-upstream origin release" type = "Command" -[workflows.steps.variables] -"$version" = "Version" [[workflows.steps]] base = "main" type = "CreatePullRequest" [workflows.steps.title] -template = "chore: prepare release $version" -variables = { "$version" = "Version" } +template = "chore: prepare release" [workflows.steps.body] -template = "This PR was created by Knope. Merging it will create a new release\n\n$changelog" -variables = { "$changelog" = "ChangelogEntry" } +template = "This PR was created by Knope. Merging it will create a new release" # The release workflow that will run in CI. It is triggered when the prepare-release PR is merged [[workflows]]