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: action.yml
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -43,8 +43,11 @@ inputs:
43
43
commitMode:
44
44
description: 'Enables a `light` commit based mode. This mode generates changelogs based on the commits. Please note that this is not officially supported, and lacks a lot of features only possible with PRs.'
45
45
default: "false"
46
+
exportCache:
47
+
description: 'If enabled, the action will export the collected data to the cache. This is disabled by default. Can be passed to a follow up run via `cache`.'
48
+
default: "false"
46
49
exportOnly:
47
-
description: 'If enabled, the action will only collect the data and terminate afterwards. Data can then be consumed by steps afterwards'
50
+
description: 'If enabled, the action will only collect the data and terminate afterwards. Data can then be consumed by steps afterwards. This requires `exportCache` to be enabled'
48
51
default: "false"
49
52
outputFile:
50
53
description: 'If defined, the changelog will get written to this file. (relative to the checkout dir)'
@@ -54,7 +57,7 @@ inputs:
54
57
baseUrl:
55
58
description: 'Defines the base url for GitHub Enterprise authentication, uses `https://api.github.com` by default'
56
59
cache:
57
-
description: 'Provide the cache of a previous run. Allows to re-use collected information multiple times to generate different release notes.'
60
+
description: 'Provide the cache of a previous run. Allows to re-use collected information multiple times to generate different release notes. Requires `exportCache` to be enabled for the previous run.'
58
61
outputs:
59
62
changelog:
60
63
description: The built release changelog built from the merged pull requests
0 commit comments