diff --git a/tasks/changelog.sh b/tasks/changelog.sh index 9efd05126a..ec20cb0bab 100755 --- a/tasks/changelog.sh +++ b/tasks/changelog.sh @@ -49,12 +49,12 @@ main() { number="${BASH_REMATCH[1]}" author="${BASH_REMATCH[2]}" summary="${BASH_REMATCH[3]}" - declare $output+=" * [#${number}](${PULLS_URL}/${number}) - ${summary} ([@${author}](${GITHUB_URL}/${author}))\n" + declare $output+=" * ${summary} (by @${author} in ${PULLS_URL}/${number})\n" elif [[ ${l} =~ ${SQUASH_RE} ]] ; then number="${BASH_REMATCH[3]}" author="${BASH_REMATCH[1]}" summary="${BASH_REMATCH[2]}" - declare $output+=" * [#${number}](${PULLS_URL}/${number}) - ${summary} ([${author}](${GITHUB_URL}/search?q=${author}&type=Users))\n" + declare $output+=" * ${summary} (by @${author} in ${PULLS_URL}/${number})\n" fi done