diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index fadf70bf451..1a456a32125 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -40,6 +40,6 @@ Feel free to open an issue to report a bug or request a feature. - Run `yarn changeset`from the root, choose the package to create a changeset for, and provide a description for the change. You can either have it committed automatically or do it manually if you need to edit it. - A changeset is optional, it merely depends if it falls in one of the following categories: - `Added`, `Fixed`, `Changed`, `Removed`, `Tech Stories`, `Upcoming Features` + `Added`, `Fixed`, `Changed`, `Removed`, `Tech Stories`, `Tests`, `Upcoming Features` Two reviews from members of the Cloud Manager team are required before merge. After approval, all pull requests are squash merged. diff --git a/packages/api-v4/.changeset/README.md b/packages/api-v4/.changeset/README.md index 6d1554ed5e4..30aa3f3cbd8 100644 --- a/packages/api-v4/.changeset/README.md +++ b/packages/api-v4/.changeset/README.md @@ -1,7 +1,7 @@ # Changesets This directory gets auto-populated when running `yarn changeset`. -You can however add your changesets manually as well, knowing that the [TYPE] is limited to the following options `Added`, `Fixed`, `Changed`, `Removed`, `Tech Stories`, `Upcoming Features` and follow this format: +You can however add your changesets manually as well, knowing that the [TYPE] is limited to the following options `Added`, `Fixed`, `Changed`, `Removed`, `Tech Stories`, `Tests`, `Upcoming Features` and follow this format: ```md --- diff --git a/packages/manager/.changeset/README.md b/packages/manager/.changeset/README.md index 6d1554ed5e4..30aa3f3cbd8 100644 --- a/packages/manager/.changeset/README.md +++ b/packages/manager/.changeset/README.md @@ -1,7 +1,7 @@ # Changesets This directory gets auto-populated when running `yarn changeset`. -You can however add your changesets manually as well, knowing that the [TYPE] is limited to the following options `Added`, `Fixed`, `Changed`, `Removed`, `Tech Stories`, `Upcoming Features` and follow this format: +You can however add your changesets manually as well, knowing that the [TYPE] is limited to the following options `Added`, `Fixed`, `Changed`, `Removed`, `Tech Stories`, `Tests`, `Upcoming Features` and follow this format: ```md --- diff --git a/packages/validation/.changeset/README.md b/packages/validation/.changeset/README.md index 6d1554ed5e4..30aa3f3cbd8 100644 --- a/packages/validation/.changeset/README.md +++ b/packages/validation/.changeset/README.md @@ -1,7 +1,7 @@ # Changesets This directory gets auto-populated when running `yarn changeset`. -You can however add your changesets manually as well, knowing that the [TYPE] is limited to the following options `Added`, `Fixed`, `Changed`, `Removed`, `Tech Stories`, `Upcoming Features` and follow this format: +You can however add your changesets manually as well, knowing that the [TYPE] is limited to the following options `Added`, `Fixed`, `Changed`, `Removed`, `Tech Stories`, `Tests`, `Upcoming Features` and follow this format: ```md --- diff --git a/scripts/changelog/utils/constants.mjs b/scripts/changelog/utils/constants.mjs index 9856244706a..a2a017cf3b3 100644 --- a/scripts/changelog/utils/constants.mjs +++ b/scripts/changelog/utils/constants.mjs @@ -13,6 +13,7 @@ export const CHANGESET_TYPES = [ "Changed", "Removed", "Tech Stories", + "Tests", "Upcoming Features", ]; export const OWNER = "linode";