1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/tool/actions-commit-info.sh
Kazuhiro NISHIYAMA 7fa821a80d
Try to use set-output
because commit info are not necessary in env.
2019-12-11 14:03:30 +09:00

17 lines
534 B
Bash
Executable file

#!/bin/bash
set -euo pipefail
cd $(dirname "$0")/..
set_output () {
echo "$1=$2"
echo "::set-output name=$1::$2"
}
COMMIT_TIMESTAMP="$(git log -1 --format=%ct)"
set_output "COMMIT_TIMESTAMP" "$COMMIT_TIMESTAMP"
LOGS=$(TZ=UTC git log --since='0:00' --date=iso-local --format='%cd %s')
echo "commits of today:"
echo "$LOGS"
COUNT=$(echo "$LOGS" | wc -l)
# strip spaces
COUNT=$((0 + COUNT))
set_output "COMMIT_NUMBER_OF_DAY" "$COUNT"
set_output "COMMIT_DATE" "$(TZ=UTC git log --since='0:00' --date=short-local --format=%cd -1)"