- Claims honeygain pot and achievement rewards every day 🔥
- Fork this repository
- Go to your forked repository
- Go to Settings > Secrets and Variables > Actions. And click the button
New Repository secret
- For the secret name, use
MAIL_JWD
to set your honeygain mail andPASS_JWD
for your password - Go to your forked repository and go to the Actions tab and press the button
I understand my workflows, go ahead and enable them
Well, GitHub uses UTC time (UTC +0) for scheduling workflows, so we should convert it to our timezone.
For example: If I want to set the daily trigger to trigger at 9:00 PM (UTC +7), I have to set it to 2:00 PM or 14:00 (24-hour format) (UTC±0) (2+7=9).
name: Daily claim
on:
schedule:
- cron: '0 14 * * *' # <- UTC Time, replace 0 14
So, if I want the daily trigger to run at 5:00 AM (UTC +7), I have to set it to 10:00 PM (UTC±0) (use 24-hour format):
name: Daily claim
on:
schedule:
- cron: '0 22 * * *' # UTC Time
- MrLolf for HoneygainAutoClaim
- rfoal-duolingo for ideas