Skip to content

Commit f6227f1

Browse files
[618] Update AGENTS.md to refine CI/CD workflow documentation and clarify build types
1 parent b907068 commit f6227f1

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

AGENTS.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,17 +82,18 @@ cd scripts && kscript new_project.kts package-name=co.test.app app-name="Test Ap
8282
| File | Purpose |
8383
|------|---------|
8484
| `template-compose/config/detekt/detekt.yml` | Detekt rules |
85-
| `build-logic/convention/` | Shared Gradle plugins |
86-
| `.github/workflows/android.yml` | CI pipeline |
87-
| `.github/workflows/danger.yml` | Danger PR checks |
85+
| `.github/workflows/run_detekt_and_unit_tests.yml` | CI pipeline (Detekt + unit tests) |
86+
| `.github/workflows/review_pull_request.yml` | PR automation and checks |
87+
| `.github/workflows/verify_newproject_script.yml` | Validate generator script on PRs |
8888

8989
## CI/CD
9090

9191
**Pipeline:** Detekt → Lint → Tests → Coverage → Danger
9292

9393
Workflows defined in `.github/workflows/`:
94-
- `android.yml` — Main CI (build, test, coverage)
95-
- `danger.yml` — PR automation and checks
94+
- `run_detekt_and_unit_tests.yml` — Main CI (Detekt + unit tests)
95+
- `review_pull_request.yml` — PR automation and checks
96+
- `verify_newproject_script.yml` — Validate generator script on PRs
9697

9798
## Template Placeholders
9899

template-compose/AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ The app has two product flavors and two build types:
7676
| Build Type | Purpose |
7777
|------------|---------|
7878
| `debug` | Development with debug tools |
79+
| `preRelease` | Release-like build with debug certificate |
7980
| `release` | Optimized, ProGuard-enabled |
8081

8182
**Default development:** `assembleStagingDebug`
@@ -149,7 +150,6 @@ fun `When user taps login, it shows loading`() { }
149150
| `config/detekt/detekt.yml` | Static analysis rules |
150151
| `app/proguard-rules.pro` | ProGuard configuration |
151152
| `local.properties` | API keys (gitignored) |
152-
| `build-logic/convention/` | Shared Gradle plugins |
153153

154154
## Code Style
155155

0 commit comments

Comments
 (0)