When you request a change, the system will:
- ✅ Create an issue automatically
- ✅ Create a branch (
issue-{number}) - ✅ Create a PR linked to the issue
- ✅ Preview deployment (Vercel automatically)
- ✅ Production deployment (when PR is merged)
- Go to: https://github.com/Shivam-Bhardwaj/too.foo/actions
- Click "Complete Workflow - Issue to Production"
- Click "Run workflow"
- Enter your task description
- Click "Run workflow" button
That's it! The workflow will:
- Create an issue
- Create a branch
- Create a PR
- Set everything up for preview deployment
# Set your GitHub token (one time)
export GITHUB_TOKEN=your_token_here
# Create issue and PR
node scripts/create-task.js "Fix button" "The Layers button is not working"-
Checkout the branch:
git fetch origin git checkout issue-{number} # Replace {number} with actual issue number -
Make your changes:
# Edit files... git add . git commit -m "Fix: Description of changes" git push origin issue-{number}
-
Preview automatically created:
- Vercel creates preview URL automatically
- Check PR comments or Vercel dashboard
-
Merge when ready:
- Review the PR
- Merge to
main - Production deployment happens automatically!
- GitHub Actions workflows created
- Vercel configuration updated
- Scripts created
- You need to: Connect Vercel to GitHub (if not already done)
- Go to Vercel Dashboard → Project Settings → Git
- Ensure GitHub integration is connected
- Production branch:
main - Preview deployments: Enabled
See .github/WORKFLOW.md for complete documentation.