|
1 | 1 | # Agentforce Data-Aware Agent |
2 | 2 |
|
3 | 3 | [](docs/data-library/SETUP.md) |
4 | | -[](https://github.com/dentity007/Agentforce-Data-Aware-Agent/releases/tag/v0.3.0) |
| 4 | +[](https://github.com/dentity007/Agentforce-Data-Aware-Agent/releases/latest) |
5 | 5 | [](https://github.com/dentity007/Agentforce-Data-Aware-Agent) |
6 | 6 |
|
7 | 7 | An intelligent Salesforce agent that combines **schema discovery**, **dynamic action routing**, **input validation**, and **knowledge-grounded responses** for enterprise-grade AI automation. |
@@ -262,6 +262,33 @@ sf apex run test --tests MetadataDiscoveryTests,PlannerAndOrchestratorTests,Priv |
262 | 262 | sf apex run test --result-format human --code-coverage --coverage-threshold 75 --wait 30 |
263 | 263 | ``` |
264 | 264 |
|
| 265 | +## 🚀 Automated Releases |
| 266 | + |
| 267 | +This project uses **semantic versioning** with automated release management: |
| 268 | + |
| 269 | +### **How It Works** |
| 270 | +- **Conventional Commits**: Version bumps based on commit message prefixes: |
| 271 | + - `feat:` → Minor version bump (1.0.0 → 1.1.0) |
| 272 | + - `fix:` → Patch version bump (1.0.0 → 1.0.1) |
| 273 | + - `BREAKING CHANGE:` → Major version bump (1.0.0 → 2.0.0) |
| 274 | +- **Automated Process**: GitHub Actions automatically creates releases on pushes to `main`/`master` |
| 275 | +- **Changelog Generation**: Release notes are automatically generated from commit messages |
| 276 | + |
| 277 | +### **Release Process** |
| 278 | +1. **Make Changes**: Commit with conventional commit format |
| 279 | +2. **Push to Main**: Triggers automated release workflow |
| 280 | +3. **Automatic Release**: Version bump, tag creation, and GitHub release |
| 281 | +4. **Changelog Update**: Release notes added to CHANGELOG.md |
| 282 | + |
| 283 | +### **Example Commits** |
| 284 | +```bash |
| 285 | +git commit -m "feat: add intelligent inventory routing" |
| 286 | +git commit -m "fix: resolve checkpoint guard validation bug" |
| 287 | +git commit -m "feat: implement knowledge-grounded responses |
| 288 | +
|
| 289 | +BREAKING CHANGE: updated action interface" |
| 290 | +``` |
| 291 | + |
265 | 292 | ## 🤝 Contributing |
266 | 293 |
|
267 | 294 | 1. Fork the repository |
|
0 commit comments