github-actions[bot] のコミットを作る

git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"

ref. GitHub Actionsのボットがコミットしたようにアイコンをつけるにはメールに「github-actions[bot]@users.noreply.github.com」を指定すれば良い - nwtgck / Ryo Ota

date command on Linux and macOS

date コマンドが linux と macOS でオプションが違うという罠。一ヶ月後の日付を出力するコマンドで比較する。

参考. Macのdateコマンドで1日後の日付を取得する

date command on Linux

$ date -d "1month" "+%Y%m%d"
20221110

date command on macOS

$ date -v+1m +"%Y%m%d"
20221110