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
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -150,6 +150,9 @@ The Action exposes some outputs you can further use in your workflow. The Action
150
150
The generated compare URL for the just created relase. For example `https://github.com/org/repo/compare/v1.0.0...v1.1.0`.
151
151
The value is only available, if the Action could generate a compare URL based on the available CHANGELOG data.
152
152
153
+
### `release_url_fragment`
154
+
The URL fragment for the just created release. For example '#v100---2021-02-01'. You can use this to generate URLs that point to the newly created release in your CHANGELOG.
155
+
153
156
### `unreleased_compare_url`
154
157
The generated compare URL between the latest version and the target revision. For example `https://github.com/org/repo/compare/v1.0.0...HEAD`.
155
158
The value is only available, if the Action could generate a compare URL based on the available CHANGELOG data.
@@ -173,6 +176,10 @@ See workflow below on how to use these output values in your workflow.
Copy file name to clipboardExpand all lines: action.yml
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,8 @@ inputs:
27
27
outputs:
28
28
release_compare_url:
29
29
description: The generated compare URL for the just created relase. For example https://github.com/org/repo/compare/v1.0.0...v1.1.0
30
+
release_url_fragment:
31
+
description: The URL fragment for the just created release. For example '#v100---2021-02-01'. You can use this to generate URLs that point to the newly created release in your CHANGELOG.
30
32
unreleased_compare_url:
31
33
description: The generated compare URL between the latest version and the target revision. For example https://github.com/org/repo/compare/v1.0.0...HEAD
0 commit comments