Achievement Details
| Property | Value |
|---|---|
| Achievement ID | quickdraw |
| Icon | 🤠 |
| Description | Closed an issue within 5 minutes of opening |
| Helper Account | Not required |
| Tiers | Single tier only |
Tier
Default Tier
1 issue closed within 5 minutes
Quickdraw has only one tier. Once you close one issue quickly, you earn the achievement.
How It Works
The automation creates and immediately closes an issue:- Opens an issue - Creates a new issue in your repository
- Immediately closes it - Closes the issue within milliseconds
- Achievement triggers - GitHub recognizes the quick close
The tool closes the issue much faster than 5 minutes (within 1 second), ensuring the achievement triggers reliably.
Configuration
Minimal configuration required in.env:
Implementation Details
Fromsrc/achievements/quickdraw.ts:20-33:
The
createQuickdrawIssue function handles both creating and closing the issue in a single operation.Workflow Example
Here’s what happens when you run Quickdraw:Issue Content
The created issue includes:- Title: Identifies it as a Quickdraw achievement issue
- Body: Explains the purpose of the issue
- Labels: May include automated labels (if configured)
- Status: Closed immediately after creation
Cleanup
The closed issue remains in your repository’s issue history. Since Quickdraw only creates 1 issue, cleanup is not a major concern.
- You can manually delete the issue from the GitHub web interface
- Or keep it as a record of your achievement
Estimated Time
From the achievement definition insrc/achievements/index.ts:62:
- Estimated time per unit: 2000ms (2 seconds)
- Total time: ~2 seconds (single tier)
This is the fastest achievement to earn, taking only a couple of seconds to complete.
Why It’s Fast
Quickdraw is intentionally simple:- ✅ Single tier only (no Bronze/Silver/Gold)
- ✅ No helper account needed
- ✅ No branch creation or PR merging
- ✅ No discussions or coauthors
- ✅ Just one API call to create and one to close
Common Use Cases
- Testing the tool - Use Quickdraw to verify your configuration works
- Quick win - Earn an achievement badge in seconds
- Demonstration - Show how the tool works without creating much history
Comparison with Other Achievements
| Feature | Quickdraw | YOLO | Pull Shark |
|---|---|---|---|
| Tiers | 1 | 1 | 4 (Default, Bronze, Silver, Gold) |
| Time | ~2 seconds | ~5 seconds | ~10 seconds to ~85 minutes |
| Helper account | No | Yes | No |
| Cleanup needed | Minimal (1 issue) | Yes (1 PR) | Yes (2-1024 PRs) |
| Complexity | Simplest | Simple | Medium to High |
Best Practices
Test First
Run Quickdraw first to verify your GitHub token and repository access work correctly.
Keep the Issue
The single closed issue serves as documentation that you’ve used the tool.
Troubleshooting
If Quickdraw fails:- Check token permissions - Ensure your token has
reposcope - Verify repository - Confirm you own the target repository
- Check rate limits - Though unlikely with just one issue
Next Steps
YOLO
Another single-tier achievement (requires helper account)
Pull Shark
Multi-tier achievement for more serious badge hunting