See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
| name: Security audit | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| push: | |
| paths: | |
| - '**/Cargo.toml' | |
| - '**/Cargo.lock' | |
| jobs: | |
| security_audit: |
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
| Branch | Name | Notes |
|---|---|---|
| Stable | master | Accepts merges from Release and Hotfix branches only. |
| Development | develop | Accepts merges from Feature/Bugfix, Release and Hotfix |
| Features/Bugfix | feat-* / bug-* | Always branch off HEAD of develop |
| Hotfix | hotfix-* | Always branch off master. Merges back into master and develop. |