Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
b4c551a
feat(api): Add error serialization and non-PR workflow support
jamengual Jan 21, 2026
dcd7675
docs(api): Document error serialization and non-PR workflows
jamengual Jan 22, 2026
88beecf
feat(api): Add drift detection and remediation endpoints
jamengual Jan 22, 2026
9a668b9
feat(api): Add additional drift API endpoints (Phase 5)
jamengual Jan 22, 2026
d19b6c2
fix: Address linting and formatting issues
jamengual Jan 22, 2026
780168d
ci: Enable image push for drift-detection feature branch
jamengual Jan 22, 2026
afdf1af
Revert "ci: Enable image push for drift-detection feature branch"
jamengual Jan 22, 2026
12f16be
feat(api): Modernize all API endpoints with consistent patterns
jamengual Jan 22, 2026
12d1ee6
docs(api): Update API documentation with new envelope format
jamengual Jan 22, 2026
fb85860
fix: Register drift/remediation API routes and add route tests
jamengual Feb 9, 2026
6a82b6d
ci: Enable image push to GHCR on pull requests
jamengual Feb 9, 2026
00c8bd2
fix: Address 8 PR review comments and enable drift detection
jamengual Feb 9, 2026
93cffe1
feat: Add drift webhook notifications (Slack and HTTP)
jamengual Feb 12, 2026
847f27d
docs: Add drift webhook notification examples and configuration
jamengual Feb 12, 2026
bfcd738
fix: address PR review feedback - driftKey ref, gomock migration, for…
jamengual Apr 3, 2026
bfa95ae
docs: add drift detection cross-references to FAQ, locking, and usage…
jamengual Apr 3, 2026
6eb7894
fix: address CI lint failures - imports, unused code, omitzero, markdown
jamengual Apr 3, 2026
0eddb38
revert: restore atlantis-image.yml to upstream default
jamengual Apr 3, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions cmd/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ const (
WebBasicAuthFlag = "web-basic-auth"
WebUsernameFlag = "web-username"
WebPasswordFlag = "web-password"
EnableDriftDetectionFlag = "enable-drift-detection"
WebsocketCheckOrigin = "websocket-check-origin"

// NOTE: Must manually set these as defaults in the setDefaults function.
Expand Down Expand Up @@ -646,6 +647,10 @@ var boolFlags = map[string]boolFlag{
description: "Enable websocket origin check",
defaultValue: false,
},
EnableDriftDetectionFlag: {
description: "Enable drift detection and remediation API endpoints.",
defaultValue: false,
},
HideUnchangedPlanComments: {
description: "Remove no-changes plan comments from the pull request.",
defaultValue: false,
Expand Down
1 change: 1 addition & 0 deletions cmd/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ var testFlags = map[string]any{
EnablePolicyChecksFlag: false,
EnableRegExpCmdFlag: false,
EnableDiffMarkdownFormat: false,
EnableDriftDetectionFlag: false,
EnableProfilingAPI: false,
}

Expand Down
Loading
Loading