@@ -12,12 +12,12 @@ Kalco now has comprehensive GitHub Actions workflows that automatically:
1212- 🚀 ** Release** on GitHub with detailed release notes
1313- 🔒 ** Scan** for security vulnerabilities
1414- 🧪 ** Test** the quickstart script and all functionality
15- - 📋 ** Generate** changelogs automatically
15+ - 📋 ** Generate** release notes automatically
1616
1717## 🔄 Workflow Types
1818
1919### 1. ** CI Workflow** (` .github/workflows/ci.yml ` )
20- - ** Triggers** : Push to main , Pull requests
20+ - ** Triggers** : Push to master , Pull requests
2121- ** Purpose** : Continuous integration testing
2222- ** Actions** :
2323 - Run tests with race detection
@@ -57,7 +57,7 @@ Kalco now has comprehensive GitHub Actions workflows that automatically:
5757- ** Triggers** : Push to main, Pull requests
5858- ** Purpose** : Generate release notes
5959- ** Actions** :
60- - Auto-generate changelog
60+ - Auto-generate release notes
6161 - Categorize changes
6262 - Create release drafts
6363
@@ -68,7 +68,7 @@ Kalco now has comprehensive GitHub Actions workflows that automatically:
6868# Ensure all changes are committed and pushed
6969git add .
7070git commit -m " feat: add new feature"
71- git push origin main
71+ git push origin master
7272```
7373
7474### ** Step 2: Create and Push a Tag**
@@ -145,7 +145,7 @@ act push -W .github/workflows/ci.yml
145145## 📊 Workflow Status
146146
147147### ** Required Status Checks**
148- Before merging to main , ensure:
148+ Before merging to master , ensure:
149149- ✅ ** CI** - All tests pass
150150- ✅ ** Lint** - Code quality checks pass
151151- ✅ ** Security** - No vulnerabilities detected
@@ -232,7 +232,7 @@ gh run rerun <run-id>
232232### ** Version Management**
233233- Use semantic versioning (` v1.0.0 ` , ` v1.1.0 ` , ` v2.0.0 ` )
234234- Create tags from main branch only
235- - Use conventional commit messages for auto-changelog
235+ - Use conventional commit messages for auto-release notes
236236
237237### ** Release Process**
238238- Test locally before tagging
@@ -259,12 +259,12 @@ gh run rerun <run-id>
259259
260260Before creating a release:
261261
262- - [ ] All changes committed and pushed to main
262+ - [ ] All changes committed and pushed to master
263263- [ ] CI workflow passing
264264- [ ] Security scan clean
265265- [ ] Quickstart test successful
266266- [ ] Documentation updated
267- - [ ] Changelog reviewed
267+ - [ ] Release notes reviewed
268268- [ ] Version number decided
269269- [ ] Release notes prepared
270270
0 commit comments