mirror of
https://github.com/stefanzweifel/changelog-updater-action.git
synced 2026-02-20 22:47:26 +08:00
14 lines
351 B
Bash
Executable file
14 lines
351 B
Bash
Executable file
#!/bin/sh -l
|
|
|
|
php /changelog-updater update \
|
|
--release-notes="$1" \
|
|
--latest-version="$2" \
|
|
--release-date="$3" \
|
|
--path-to-changelog="$4" \
|
|
--compare-url-target-revision="$5" \
|
|
--heading-text="$6" \
|
|
$( [ "$7" ] && echo "--hide-release-date" ) \
|
|
$( [ "$8" ] && echo "--parse-github-usernames" ) \
|
|
--github-actions-output \
|
|
--write \
|
|
--no-interaction
|