From afd7e6d7bbf70ea7bc2e4f3c782fe1feabe42d88 Mon Sep 17 00:00:00 2001 From: motoki317 Date: Thu, 27 Nov 2025 12:55:55 +0900 Subject: [PATCH] docs(README): Fix date format from 12h to 24h in schedule pattern hh represents 12h format from 01 to 12 which is probably not suitable for date tags. The pattern example in the table below uses the 24h format HH, so this makes the document consistent. Signed-off-by: motoki317 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 72db82f..cd51c70 100644 --- a/README.md +++ b/README.md @@ -464,7 +464,7 @@ tags: | # handlebars type=schedule,pattern={{date 'YYYYMMDD'}} # handlebars with timezone - type=schedule,pattern={{date 'YYYYMMDD-hhmmss' tz='Asia/Tokyo'}} + type=schedule,pattern={{date 'YYYYMMDD-HHmmss' tz='Asia/Tokyo'}} ``` Will be used on [schedule event](https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule).