From 4b24533b240e3b2fe9ca6c4f21527bb1ec88d634 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Borgna?= <121866228+aborgna-q@users.noreply.github.com> Date: Fri, 24 May 2024 09:11:56 +0100 Subject: [PATCH] ci: whitelist packages to release-plz (#358) Otherwise release-plz tries to generate changelogs for `tket2-py` and the binary tools. https://github.com/CQCL/tket2/pull/357 image --- release-plz.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/release-plz.toml b/release-plz.toml index ccbe875e..b7d64e3e 100644 --- a/release-plz.toml +++ b/release-plz.toml @@ -4,6 +4,9 @@ # Open the release PR as a draft pr_draft = true +# Default to not processing the packages +release = false + # Enforce adding the project name in the git tag, to avoid collisions with python. # (This would normally only be enabled once there are multiple packages in the workspace) git_tag_name = "{{ package }}-v{{ version }}" @@ -24,3 +27,10 @@ commit_parsers = [ { message = "^revert", group = "Reverted changes", skip = true }, { message = "^ci", group = "CI", skip = true }, ] + +[[package]] +name = "tket2" +release = true + +# Temporarily disabled until the first manual release +publish = false