check-updates.sh: when running through Github Actions, specify that commit has been autogenerated

This commit is contained in:
Leonid Pliushch 2021-01-02 23:51:19 +02:00
parent 4bc2db3a00
commit 386a0e4f72
No known key found for this signature in database
GPG Key ID: 45F2964132545795
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ if [ -f "${BASEDIR}/github-projects.txt" ]; then
if "${BASEDIR}/../run-docker.sh" ./build-package.sh -a aarch64 -I "$package"; then
if [ "$GIT_COMMIT_PACKAGES" = "true" ]; then
git add "${BASEDIR}/../../packages/${package}"
git commit -m "${package}: update to ${latest_version}"
git commit -m "$(echo -e "${package}: update to ${latest_version}\nThis commit has been automatically submitted by Github Actions.")"
fi
if [ "$GIT_PUSH_PACKAGES" = "true" ]; then