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
- Add limitation to avoid of usage black to tests.
- Removed workflow copying Release notes from PR to Issue as no more supported.
- Updated README.md to show example of row formatting as build-in feature and provide list of supported keywords.
Copy file name to clipboardExpand all lines: README.md
+14-1Lines changed: 14 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ Generate Release Notes action is dedicated to enhance the quality and organizati
54
54
### `row-format-issue`
55
55
-**Description**: The format of the row for the issue in the release notes. The format can contain placeholders for the issue `number`, `title`, and issues `pull-requests`. The placeholders are case-sensitive.
56
56
-**Required**: No
57
-
-**Default**: `#{number} _{title}_ in {pull-requests}"`
-**Description**: The format of the row for the PR in the release notes. The format can contain placeholders for the PR `number`, `title`, and PR `pull-requests`. The placeholders are case-sensitive.
@@ -166,6 +166,9 @@ Add the following step to your GitHub workflow (in example are used non-default
@@ -197,6 +200,16 @@ If an issue is linked to multiple PRs, the action fetches and aggregates contrib
197
200
#### No Release Notes Found
198
201
If no valid "Release Notes" comment is found in an issue, it will be marked accordingly. This helps maintainers quickly identify which issues need attention for documentation.
199
202
203
+
#### Row formatting
204
+
Format of the row for the issue and PR in the release notes can be customized. The placeholders are case-sensitive.
205
+
206
+
**Supported row format keywords:**
207
+
- `{number}`: Issue or PR number.
208
+
- `{title}`: Issue or PR title.
209
+
- `{pull-requests}`: List of PRs linked to the issue. Adds a list of PRs linked to the issue in the row with `in` prefix:
210
+
- `#{number} _{title}_ {pull-requests}`=> "[#43]() _title_ in [#PR1](), [#PR2](), [#PR3]()"
211
+
- Not used in PR row format. See default value.
212
+
200
213
### Select start date for closed issues and PRs
201
214
By set **published-at** to true the action will use the `published-at` timestamp of the latest release as the reference point for searching closed issues and PRs, instead of the `created-at` date. If first release, repository creation date is used.
Copy file name to clipboardExpand all lines: action.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -58,11 +58,11 @@ inputs:
58
58
row-format-issue:
59
59
description: 'Format of the issue row in the release notes. Available placeholders: {link}, {title}, {pull-requests}. Placeholders are case-insensitive.'
0 commit comments