Skip to content

Commit

Permalink
Add parameters to a release issue URL (#6279)
Browse files Browse the repository at this point in the history
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}`);
```
  • Loading branch information
ybiquitous committed Aug 18, 2022
1 parent 613334b commit 8cb1829
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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.
Expand Down

0 comments on commit 8cb1829

Please sign in to comment.