-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
雑談会ログのissueの作成時刻を月曜日の10時に変更 #139
Conversation
なるほど...! 自分で書いたところですが忘れてました 😇
|
レビューありがとうございます!修正します!!! |
レビューありがとうございました!マージして動かしてみてダメだったら調整します! |
#140 11/11になったので、 |
@@ -14,6 +14,6 @@ jobs: | |||
run: | | |||
latest=$(gh issue list --jq '.[].title' --json title --search "雑談会 sort:created-desc" --limit 10 | grep 回 | grep -oE '[0-9]+' | head -1) | |||
latest=$(($latest+1)) | |||
gh issue create --title "第${latest}回 雑談会ログ - `date '+%Y/%m/%d'`" --body "今週の雑談会のログです:memo:" | |||
gh issue create --title "第${latest}回 雑談会ログ - `date --date '+4 days' '+%Y/%m/%d'`" --body "今週の雑談会のログです:memo:" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
commentが遅くなりましたが date --date 'next friday' +%Y/%m/%d
にした方が、実行日時に依存しにくくなるかなと思いました。(TZは考慮してないですが)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
next friday
できるんですね。後で修正Pull request作ります!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
next friday
$ brew install coreutils
していれば、gdate コマンドが使え、$ man gdate
でいろいろ確認できますね。:smile:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
`date --date '+4 days' '+%Y/%m/%d'`
あと、今回はそんなに関係ないですが、$(date --date '+4 days' '+%Y/%m/%d')
にしたほうが、入れ子に出来る、可読性が上がるなどメリットがありそうです。常に $(...)
を使うで良いと思います。
月曜日に作って、金曜日までにみんな書いていけば雑談置き場にもなるしpublicだしいいかなと思いました。