You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ The module will look for the last tag, get all the issues closed in the time bet
60
60
Following the options for the module:
61
61
62
62
-`--action=release|changelog` The **gren** action to run. Default: `release`_(see details below for changelog generator)_
63
-
-`--tags=0.1.0|0.2.0,0.1.0` A specific tag or the range of tags to build the release notes from.
63
+
-`--tags=0.1.0|0.2.0,0.1.0|all` A specific tag or the range of tags to build the release notes from. You can also specify `all` to write all releases. _(To override existing releases use the --override flag)_
64
64
-`--ignore-labels=wont_fix|wont_fix,duplicate` One or more labels to ignore in the output. Default: `false`_(it will still output the issue, just without the specified labels)_
65
65
-`--ignore-issues-with=wont_fix|wont_fix,duplicate` Ignore issues that contains one of the specified labels. Default: `false`
66
66
-`--time-wrap=latest|history` The release notes you want to include in the changelog. Default: `latest`_Only applicable to the `changelog` action_
@@ -152,6 +152,14 @@ If you want then to override, simple use:
152
152
gren --override --tags=0.3.0
153
153
```
154
154
155
+
### Write all existing tags
156
+
157
+
You can run the task to generate release notes for all existing tags.
158
+
Releases that already exist will be skipped. To override them, use the flag `--override`
0 commit comments