Hacker News new | ask | show | jobs
by Kwpolska 368 days ago
> Interestingly, GitHub Workflows don’t support timezones! This means that, if I want to sent a text every morning at 7am, when on BST (British Summer Time) I actually need to schedule it for 6am instead.

Nothing a little kludge within the workflow can't solve... Set it up for 6am and 7am, check current time in London, skip sending the text if it's the wrong hour.

1 comments

There's also a GitHub Action, `set-timezone`, that can be called in the workflow for that purpose:

https://github.com/szenius/set-timezone