Comparison with GitHub Security Campaigns
GitHub Security Campaigns (Enterprise Cloud only) focus on remediating security alerts through alert assignment and Copilot Autofix.
GitHub agentic campaigns (agentic campaigns) are flexible automation initiatives for any repeatable work, coordinated by AI agents via GitHub Actions workflows.
Key Differences
Section titled “Key Differences”| Security Campaigns | Agentic Campaigns | |
|---|---|---|
| Availability | Enterprise Cloud only | Any GitHub account with Actions |
| Use Case | Security alert remediation | Any repeatable initiative |
| Configuration | Web UI | YAML in .campaign.md |
| Automation | Alert assignment, Copilot Autofix | AI agents, custom workflows |
| Tracking | Built-in dashboard | GitHub Projects |
| API | REST API | Actions + Projects v2 |
When to Use Each
Section titled “When to Use Each”Use Security Campaigns for security alert remediation on Enterprise Cloud with Copilot Autofix integration.
Use Agentic Campaigns for custom automation needs across repositories with version-controlled specs and AI-driven coordination.
Integration Example
Section titled “Integration Example”Automate Security Campaign creation using agentic campaigns (requires Enterprise Cloud):
---name: "Security Campaign Automation"engine: copilottools: github: toolsets: [default, code_security]on: schedule: - cron: "0 9 * * 1"---
# TaskAnalyze code scanning alerts from last 7 days.For CWE categories with 5+ alerts, create a Security Campaign via REST API.Assign alerts to appropriate teams.Feature Comparison
Section titled “Feature Comparison”| Feature | Security Campaigns | Agentic Campaigns |
|---|---|---|
| Alert grouping | ✅ Native | ➖ Custom logic |
| Copilot Autofix | ✅ Integrated | ➖ Separate |
| Custom objectives | ➖ Security only | ✅ Any goal |
| Multi-repository | ➖ Single org | ✅ Any scope |
| Version control | ➖ No | ✅ YAML in repo |
| Scheduling | ➖ Manual | ✅ Cron + events |
| Historical metrics | ➖ Live only | ✅ Git branches |