From 1b0b4cb15428b1d757cd373c86997bfb3c2bf042 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Mon, 22 Mar 2021 11:48:24 -0700 Subject: [PATCH] add skip label docs --- docs/pages/docs/configuration/autorc.mdx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/pages/docs/configuration/autorc.mdx b/docs/pages/docs/configuration/autorc.mdx index d78d4457b..3e6025acc 100644 --- a/docs/pages/docs/configuration/autorc.mdx +++ b/docs/pages/docs/configuration/autorc.mdx @@ -270,6 +270,21 @@ You can customize everything about a label } ``` +#### Release Type: `skip` + +A label with the `skip` release type will not create a release when merged even when paired with other labels. + +```json +{ + "labels": [ + { + "name": "infra", + "releaseType": "none" + } + ] +} +``` + #### Release Type: `none` A label with the `none` release type will not create a release when merged.