@@ -23,7 +23,7 @@ Classic Agentforce uses the standard declarative bot metadata approach. The CI/C
2323- Must deactivate agent before deploying, reactivate after
2424- Test definitions (` AiEvaluationDefinition ` ) deployed separately
2525
26- ** Workflows** (` .github/workflows/agentforce-classic/ ` ):
26+ ** Workflows** (` .github/workflows/ ` ):
2727| Workflow | Trigger | Flow |
2828| ----------| ---------| ------|
2929| ` agentforce-validate.yml ` | PR to main | Setup → Deploy → Test Discovery → Parallel Testing → Validation → Cleanup |
@@ -58,7 +58,7 @@ Agentforce Script is the new approach introduced in Spring '25. Instead of manag
5858- No deactivation needed before deploy — ` sf agent publish ` creates a new inactive version, then activate after
5959- ` subjectVersion ` in test definitions must match the active BotVersion — patched dynamically in CI
6060
61- ** Workflows** (` .github/workflows/agentforce-script/ ` ):
61+ ** Workflows** (` .github/workflows/ ` ):
6262| Workflow | Trigger | Flow |
6363| ----------| ---------| ------|
6464| ` agentforce-script-validate.yml ` | PR to main | Setup → Deploy dependencies → Publish → Activate → Patch test versions → Deploy Tests → Parallel Testing → Validation → Cleanup |
@@ -118,13 +118,11 @@ To learn more about pool strategies: `How Scratch Orgs Pools Fit Into Your Sales
118118AgentforceCICD/
119119├── .github/
120120│ └── workflows/
121- │ ├── agentforce-classic/ # Classic demo workflows
122- │ │ ├── agentforce-validate.yml
123- │ │ └── agentforce-release.yml
124- │ ├── agentforce-script/ # Script demo workflows
125- │ │ ├── agentforce-script-validate.yml
126- │ │ └── agentforce-script-release.yml
127- │ └── prepare-pools.yml # Shared pool preparation
121+ │ ├── agentforce-validate.yml # Classic validate workflow
122+ │ ├── agentforce-release.yml # Classic release workflow
123+ │ ├── agentforce-script-validate.yml # Script validate workflow
124+ │ ├── agentforce-script-release.yml # Script release workflow
125+ │ └── prepare-pools.yml # Shared pool preparation
128126├── agentforce-classic/ # Demo 1 — self-contained
129127├── agentforce-script/ # Demo 2 — self-contained
130128├── config/ # Shared pool & scratch org configs
0 commit comments