From 3d32682a67bbba5979013119e08698a4f240e13f Mon Sep 17 00:00:00 2001 From: pathetic nihilist Date: Wed, 12 Jul 2023 09:10:52 +0800 Subject: [PATCH] time counting fix (#1261) --- .github/workflows/changelog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/changelog.py b/.github/workflows/changelog.py index 40f8dd4a..aaa51abf 100644 --- a/.github/workflows/changelog.py +++ b/.github/workflows/changelog.py @@ -10,7 +10,7 @@ main_repo_identifier = "eried/portapack-mayhem" os.system('gh repo set-default ' + main_repo_url) -raw_git = os.popen('git log next --since="1200 hours" --pretty=format:"- ^%h^ - {USERNAME}*_%al_%an*: %s"').read() +raw_git = os.popen('git log next --since="24 hours" --pretty=format:"- ^%h^ - {USERNAME}*_%al_%an*: %s"').read() # ^ as github's rule, a real username can contains "-" but not "_" and "*", so use these two to seperate things.