diff --git a/tasks/changelog.sh b/tasks/changelog.sh index 78d599ad22..0b36ace450 100755 --- a/tasks/changelog.sh +++ b/tasks/changelog.sh @@ -44,7 +44,7 @@ main() { git log --first-parent --format='%aN|%s %b' ${1} | { while read l; do - output="`[[ ${l} =~ "openlayers/greenkeeper" ]] && echo greenkeeper || echo main`_output" + output="`[[ ${l} =~ "openlayers/dependabot" ]] && echo dependabot || echo main`_output" if [[ ${l} =~ ${MERGE_RE} ]] ; then number="${BASH_REMATCH[1]}" author="${BASH_REMATCH[2]}" @@ -60,12 +60,12 @@ main() { echo -e "$main_output" - if [ -n "$greenkeeper_output" ]; then + if [ -n "$dependabot_output" ]; then echo echo "
" echo " Dependency Updates" echo - echo -e "$greenkeeper_output" + echo -e "$dependabot_output" echo echo "
" fi