GitHub Actions workflows for integrating Augment's AI-powered code review and PR descriptions.
mkdir -p .github/workflows
cd .github/workflows
curl -O https://raw.githubusercontent.com/augmentcode/auggie/main/examples/workflows/describe-pr.yml
curl -O https://raw.githubusercontent.com/augmentcode/auggie/main/examples/workflows/pr-review.yml
curl -O https://raw.githubusercontent.com/augmentcode/auggie/main/examples/workflows/on-demand-description.yml
curl -O https://raw.githubusercontent.com/augmentcode/auggie/main/examples/workflows/on-demand-review.yml
curl -O https://raw.githubusercontent.com/augmentcode/auggie/main/examples/workflows/release.yml
curl -O https://raw.githubusercontent.com/augmentcode/auggie/main/examples/workflows/test-action.yml
git add .github/workflows/
git commit -m "Add Augment AI workflows"
git pushmkdir -p .github/workflows
cd .github/workflows
curl -O https://raw.githubusercontent.com/augmentcode/auggie/main/examples/workflows/describe-pr.yml
curl -O https://raw.githubusercontent.com/augmentcode/auggie/main/examples/workflows/pr-review.yml
git add .github/workflows/
git commit -m "Add Augment AI workflows"
git pushRequired Secret: Add AUGMENT_SESSION_AUTH to your repository:
- Go to Settings → Secrets and variables → Actions
- Click "New repository secret"
- Name:
AUGMENT_SESSION_AUTH - Value: Your Augment session authentication token
Automatic:
describe-pr.yml- Auto-generates PR descriptionspr-review.yml- Auto-reviews new PRs
On-Demand (triggered by labels):
on-demand-description.yml- Addaugment_describelabelon-demand-review.yml- Addaugment_reviewlabel
Other:
release.yml- Automated release notestest-action.yml- Manual testing
Edit the .yml files to modify triggers, parameters, or add additional steps.