Skip to content

Commit fbed2c0

Browse files
Add support for new --parse-github-usernames option (#36)
* Add parse-github-usernames input * Upgrade CLI
1 parent cacc66e commit fbed2c0

File tree

4 files changed

+19
-13
lines changed

4 files changed

+19
-13
lines changed

action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ inputs:
3131
required: false
3232
default: null
3333
description: Hide release date in the new release heading.
34+
parse-github-usernames:
35+
required: false
36+
default: null
37+
description: "Experimental: Find GitHub usernames in release notes and link to their profile."
3438

3539
outputs:
3640
release_compare_url:
@@ -55,3 +59,4 @@ runs:
5559
- ${{ inputs.compare-url-target-revision }}
5660
- ${{ inputs.heading-text }}
5761
- ${{ inputs.hide-release-date }}
62+
- ${{ inputs.parse-github-usernames }}

changelog-updater

10.8 MB
Binary file not shown.

composer.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

entrypoint.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ php /changelog-updater update \
88
--compare-url-target-revision="$5" \
99
--heading-text="$6" \
1010
$( [ "$7" ] && echo "--hide-release-date" ) \
11+
$( [ "$8" ] && echo "--parse-github-usernames" ) \
1112
--github-actions-output \
1213
--write \
1314
--no-interaction

0 commit comments

Comments
 (0)