Notes • Debug • Feature • Usage
- Always update your repo following the orginal repo to get latest update + bug fixes, i will not support anything if your repo is outdated.
- (*): Do not fork this repo if two of these (not only 1) GitHub Actions status badge show failing, and wait until 1 of these or two of these show passing then you can fork again
- 'Daily claim' workflows always run every 14:00 UTC +0, if you want to change it, refer to this
- 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
Daily workflows file path (default is 14:00 UTC +0): .github/workflows/daily.yml
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
GitHub Actions schedules can sometimes be delayed by up to 15 minutes due to high demand, so don’t worry!
- MrLolf for HoneygainAutoClaim
- rfoal-duolingo for ideas