Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .agents/skills/incident-to-pr/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ One PR with this shape:

```
> Use incident-to-pr on docs/postmortems/2025-05-08-checkout-payment-timeout.md.
> Target repo: DevExpGbb/zava-checkout.
> Target repo: hackathon-brown-eagle-55/zava-checkout.
```

## See also
Expand Down
4 changes: 4 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"extends": "next/core-web-vitals"
}

5 changes: 0 additions & 5 deletions .github/aw/actions-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,6 @@
"version": "v7",
"sha": "043fb46d1a93c77aae656e7c1c64a875d1fc6a0a"
},
"github/gh-aw-actions/setup@v0.71.5": {
"repo": "github/gh-aw-actions/setup",
"version": "v0.71.5",
"sha": "b8068426813005612b960b5ab0b8bd2c27142323"
},
"microsoft/apm-action@v1.7.2": {
"repo": "microsoft/apm-action",
"version": "v1.7.2",
Expand Down
20 changes: 10 additions & 10 deletions .github/instructions/ci-cd-golden-paths.instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ The platform team ships **reusable GitHub Actions workflows** and **paved-road I

| Workflow | Path | Purpose |
|---|---|---|
| `ci-build-test` | `DevExpGbb/zava-ci-templates/.github/workflows/ci-build-test.yml@v2` | Lint + unit + integration tests, language auto-detect (Node, Python, Java, Go) |
| `apm-audit` | `DevExpGbb/zava-ci-templates/.github/workflows/apm-audit.yml@v2` | `apm audit --ci --policy org` — drift + policy fail-closed |
| `security-scan` | `DevExpGbb/zava-ci-templates/.github/workflows/security-scan.yml@v2` | CodeQL + dependency review + gitleaks + SBOM |
| `deploy-aks` | `DevExpGbb/zava-ci-templates/.github/workflows/deploy-aks.yml@v2` | Blue/green deploy to AKS with OIDC |
| `deploy-functions` | `DevExpGbb/zava-ci-templates/.github/workflows/deploy-functions.yml@v2` | Slot-swap deploy for Functions with OIDC |
| `ci-build-test` | `hackathon-brown-eagle-55/zava-ci-templates/.github/workflows/ci-build-test.yml@v2` | Lint + unit + integration tests, language auto-detect (Node, Python, Java, Go) |
| `apm-audit` | `hackathon-brown-eagle-55/zava-ci-templates/.github/workflows/apm-audit.yml@v2` | `apm audit --ci --policy org` — drift + policy fail-closed |
| `security-scan` | `hackathon-brown-eagle-55/zava-ci-templates/.github/workflows/security-scan.yml@v2` | CodeQL + dependency review + gitleaks + SBOM |
| `deploy-aks` | `hackathon-brown-eagle-55/zava-ci-templates/.github/workflows/deploy-aks.yml@v2` | Blue/green deploy to AKS with OIDC |
| `deploy-functions` | `hackathon-brown-eagle-55/zava-ci-templates/.github/workflows/deploy-functions.yml@v2` | Slot-swap deploy for Functions with OIDC |

### Calling pattern

Expand All @@ -25,13 +25,13 @@ name: CI
on: [pull_request, push]
jobs:
build-test:
uses: DevExpGbb/zava-ci-templates/.github/workflows/ci-build-test.yml@v2
uses: hackathon-brown-eagle-55/zava-ci-templates/.github/workflows/ci-build-test.yml@v2
with:
language: auto
apm-audit:
uses: DevExpGbb/zava-ci-templates/.github/workflows/apm-audit.yml@v2
uses: hackathon-brown-eagle-55/zava-ci-templates/.github/workflows/apm-audit.yml@v2
security:
uses: DevExpGbb/zava-ci-templates/.github/workflows/security-scan.yml@v2
uses: hackathon-brown-eagle-55/zava-ci-templates/.github/workflows/security-scan.yml@v2
secrets: inherit
```

Expand All @@ -55,7 +55,7 @@ Production environments require **two human approvers** + green from: `apm-audit
## IaC standards

- **Terraform** for cloud resources, **Bicep** for Azure-native resources where the team prefers ARM transparency.
- All modules from `DevExpGbb/zava-iac-modules` (versioned, peer-reviewed). No raw `azurerm_*` or `Microsoft.*` resources in service repos — call modules.
- All modules from `hackathon-brown-eagle-55/zava-iac-modules` (versioned, peer-reviewed). No raw `azurerm_*` or `Microsoft.*` resources in service repos — call modules.
- State in Azure Storage backend with state-lock; one state file per environment.
- `terraform plan` posted as PR comment; `terraform apply` only on merge to `main` and only via the reusable `tf-apply.yml` workflow.

Expand All @@ -74,4 +74,4 @@ Production environments require **two human approvers** + green from: `apm-audit

## Need something not in the catalog?

Open an issue at `DevExpGbb/zava-ci-templates` titled `[platform-request] <thing>`. Platform team triages weekly. If genuinely org-specific to your service, scaffold under `.github/workflows/_local-<thing>.yml` with a TODO linking the issue.
Open an issue at `hackathon-brown-eagle-55/zava-ci-templates` titled `[platform-request] <thing>`. Platform team triages weekly. If genuinely org-specific to your service, scaffold under `.github/workflows/_local-<thing>.yml` with a TODO linking the issue.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:
jobs:
apm-audit:
name: APM audit (required)
uses: DevExpGbb/zava-agent-config/.github/workflows/apm-audit.yml@v5.1.2
uses: hackathon-brown-eagle-55/zava-agent-config/.github/workflows/apm-audit.yml@v5.1.2

build:
name: Build & test (placeholder)
Expand Down
Loading