Skip to content

Latest commit

 

History

History
46 lines (39 loc) · 1.98 KB

README.md

File metadata and controls

46 lines (39 loc) · 1.98 KB

Honeygain Pot

🐝 A bot that claim honeygain pot every day 🍯

Powered by GitHub Actions and Python

Daily trigger status Manual trigger status

FeatureUsage

Feature

  • Claims honeygain pot and achievement rewards every day 🔥

Usage

  1. Fork this repository
  2. Go to your forked repository
  3. Go to Settings > Secrets and Variables > Actions. And click the button New Repository secret
  4. For the secret name, use MAIL_JWD to set your honeygain mail and PASS_JWD for your password
  5. Go to your forked repository and go to the Actions tab and press the button I understand my workflows, go ahead and enable them

GitSettings

How to change the schedule to fit with my timezone before the pot is reset?

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

Big thanks to