Automatically books your workout sessions on WODBuster — the booking platform used by many CrossFit gyms. Once set up, it runs every day in the cloud so you never have to worry about grabbing a spot.
Is your gym on WODBuster? Check your gym's booking page URL. If it contains
wodbuster.com, you're good to go.
- A GitHub account (free) — sign up here if you don't have one
- Your WODBuster login email and password
Click the Fork button at the top right of this page. This creates your own private copy of the tool under your GitHub account.
Secrets are for sensitive information like your password. GitHub keeps them encrypted and never shows them in logs.
- In your forked repository, click Settings
- In the left sidebar, click Secrets and variables → Actions
- Make sure you're on the Secrets tab
- Click New repository secret and add each of the following:
| Name | Value |
|---|---|
EMAIL |
Your WODBuster login email |
PASSWORD |
Your WODBuster password |
Your schedule uses repository variables — unlike secrets, you can see and edit them at any time without deleting and recreating them. These are NOT environment variables on your computer; they live on GitHub, in your repository settings.
- Still in Settings → Secrets and variables → Actions
- Click the Variables tab (not the Secrets tab)
- Click New repository variable and add a variable for each day you want to book
| Name | Value example | Meaning |
|---|---|---|
MONDAY |
18:00 |
Book the 6 PM class every Monday |
TUESDAY |
18:00 |
Book the 6 PM class every Tuesday |
WEDNESDAY |
09:00 |
Book the 9 AM class every Wednesday |
THURSDAY |
18:00 |
|
FRIDAY |
18:00 |
|
SATURDAY |
10:00 |
|
SUNDAY |
10:00 |
- Use 24-hour format (
18:00not6:00 PM) - Only add variables for days you actually want to book — skip the rest
Two classes at the same time? If your gym offers multiple classes at the same start time (e.g. CrossFit and Endurance both at 18:00), add the class name after a |:
MONDAY=18:00|CrossFit
TUESDAY=18:00|Endurance
Optional — how many days ahead to book:
| Name | Value | Meaning |
|---|---|---|
AVAILABLE_DAYS |
7 |
Book up to 7 days in advance (default if not set) |
BOOKING_FREQUENCY |
daily |
Use daily to try every day, or weekly to book only once per week |
BOOKING_WEEKDAY |
sunday |
Used with BOOKING_FREQUENCY=weekly; choose monday through sunday |
- Click the Actions tab in your forked repository
- If prompted, click I understand my workflows, go ahead and enable them
That's it! By default, the tool will now run automatically every evening around 22:30 Spain time.
- Click the Actions tab in your repository
- Click the latest AutoWOD run
- You'll see a summary card showing exactly what happened for each day — no need to read through logs
A green checkmark means the run completed. Check the summary card to see which sessions were booked.
Go to Settings → Secrets and variables → Actions → Variables tab, click the repository variable you want to change (e.g. MONDAY), update the value, and save. The next run will pick it up automatically.
AutoWOD improves over time. Because you're running your own fork, updates don't reach you automatically — you pull them in with one click.
- Go to your forked repository's main page
- If your fork is behind, GitHub shows a This branch is X commits behind notice near the top
- Click Sync fork, then Update branch
Your secrets and schedule variables are stored separately in your repository settings, so syncing never touches them. The next scheduled run uses the updated code.
Some gyms release the full week's schedule at once (e.g. every Sunday). In that case, set these repository variables:
| Name | Value example |
|---|---|
BOOKING_FREQUENCY |
weekly |
BOOKING_WEEKDAY |
sunday |
AVAILABLE_DAYS |
7 |
The workflow still wakes up every day because GitHub Actions schedules cannot be changed by repository variables, but AutoWOD will skip immediately on the other days before installing dependencies or launching the browser.
You can also trigger the tool manually whenever you need:
- Go to Actions → Daily Reservation
- Click Run workflow (top right)
- In the Days to book ahead field, enter the number of days you want to cover (e.g.
7) - Click Run workflow
Manual runs always run immediately, even when BOOKING_FREQUENCY=weekly.
The run shows a red ✗
- Open the run and check the summary card or the step logs for the error message
- Most common cause: a secret is missing or has a typo — double-check
EMAILandPASSWORD
All days show "Skipped" in the summary
- You haven't added any repository variables yet — go to Settings → Secrets and variables → Actions → Variables tab and add at least one (e.g. name:
MONDAY, value:18:00)
"Could not find Chrome" error
- Make sure your fork is up to date with the latest version of this repository
- Do not remove or modify the Install Chrome for Puppeteer step in the workflow file
Wrong class booked when multiple classes share a time
- Add the class name to your variable:
MONDAY=18:00|CrossFit - The name match is not case-sensitive
WODBuster starts showing a CAPTCHA again
- WODBuster does not currently show a CAPTCHA on login, so AutoWOD needs no CAPTCHA service or API key
- AutoWOD keeps its 2Captcha fallback in case the check returns. If that happens, create a 2Captcha account, add credit, and save its API key as the
TWO_CAPTCHA_API_KEYrepository secret
- Your email and password are stored as encrypted GitHub secrets — only your workflow can read them
- GitHub Actions is free for public repositories
- AutoWOD currently requires no paid service
This tool is designed for WODBuster-powered gyms. Please make sure you have permission from your gym to automate bookings, and use it responsibly in line with their booking policies.
ISC — see the LICENSE file for details.