From 8cb182966cfe54f7c5488ee224cd7d85f5be6a7a Mon Sep 17 00:00:00 2001 From: Masafumi Koba <473530+ybiquitous@users.noreply.github.com> Date: Thu, 18 Aug 2022 15:33:44 +0900 Subject: [PATCH] Add parameters to a release issue URL (#6279) The following JS snippet can create the URL: ```js const params = new URLSearchParams(); params.append('title', 'Release {version}'); params.append('labels', 'status: needs discussion'); console.log(`https://github.com/stylelint/stylelint/issues/new?${params}`); ``` --- docs/maintainer-guide/releases.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/maintainer-guide/releases.md b/docs/maintainer-guide/releases.md index 6207257890..83c3335b8b 100644 --- a/docs/maintainer-guide/releases.md +++ b/docs/maintainer-guide/releases.md @@ -1,6 +1,6 @@ # Performing releases -1. Create a [new issue](https://github.com/stylelint/stylelint/issues/new) announcing the planned release, e.g. `Release 8.11.1` and include the [template checklist](#new-release-issue-template). +1. Create a [new issue](https://github.com/stylelint/stylelint/issues/new?title=Release+%7Bversion%7D&labels=status%3A+needs+discussion) announcing the planned release, e.g. `Release 8.11.1` and include the [template checklist](#new-release-issue-template). 2. Locally test `main` in the `stylelint-config-*` shareable config repositories. Install the current `main` branch (`npm install stylelint/stylelint#main --save-dev`) and run tests. 3. Locally test `main` in the [stylelint/stylelint-demo](https://github.com/stylelint/stylelint-demo) repository. 4. Locally test `main` in the [stylelint/stylelint.io](https://github.com/stylelint/stylelint.io) repository.