/HoneygainPot

Claim Honeygain lucky pot every day, on the go with the support of GitHub Actions

Primary LanguagePython

Honeygain Pot

🐝 A bot that claim honeygain pot every day 🍯

Powered by GitHub Actions and Python

Daily trigger status Manual trigger status (*)

English 🇺🇸Vietnamese 🇻🇳

NotesDebugFeatureUsage

Notes

  • 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

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?

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

Note

GitHub Actions schedules can sometimes be delayed by up to 15 minutes due to high demand, so don’t worry!

Big thanks to