GitHub Actions の schedule トリガーで「タイムゾーン」を指定できるようになった❗️2026年3月19日のブログ記事に Timezone support for scheduled workflows と書いてあって気付いた.些細なアップデートすぎて個別のアナウンスはなし...? github.blog timezone なし 今までは UTC で表記する必要があった.たとえば日本時間 10:00 に実行する場合は以下のように実装していた🕐️ name: sandbox-github-actions-schedule on: schedule: - cron: '0 1 * * *' jobs: hello: runs-on: ubuntu-slim steps: - run: echo 'Hello!' timezone あり 今後は timezone を指定でき

