Each commit message should follow this structure:
<type>[optional scope]: <description>
[optional body]
[optional footer]
MAJOR.MINOR.PATCH
fix
: Fixes a bug (corresponds to PATCH in semantic versioning)feat
: Adds a new feature (corresponds to MINOR)BREAKING CHANGE
: A change that breaks API compatibility (corresponds to MAJOR)docs
: For documentation changesstyle
: For changes that do not affect the meaning of the code (formatting, etc.)refactor
: For refactoring existing codetest
: For adding new tests or making changes to existing testschore
: For maintenance tasks or others that do not modify the code
feat: allow configuration to extend other configs
BREAKING CHANGE: the `extends` key is now used to extend other configuration files
feat!: send an email to the customer when the product is shipped
docs: correct spelling in CHANGELOG
By following this model, we can keep track of changes made to the project in an organized manner, providing useful information about each modification made.
Remember to adapt this model to our own needs and the way we manage changes in our project! Using Conventional Commits helps maintain a structured and clear history, beneficial for both current team members and future collaborators. https://www.conventionalcommits.org/en/v1.0.0-beta.4/#summary
Create a .releaserc
file with the following configuration to automate your release process using semantic-release:
{
"tagFormat": "${version}",
"repositoryUrl": "https://github.com/devops-360-online/release-management.git",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github"
],
"branches": ["main"]
}
Set up a GitHub Actions workflow to promote Release Candidates to Releases. The workflow should be defined in your repository under .github/workflows/release.yml
:
name: Create a Release
on:
workflow_dispatch:
jobs:
release:
name: Create new release
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout
uses: actions/checkout@v3
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v2
with:
semantic_version: 17.3.7
extra_plugins: |
@semantic-release/[email protected]
@semantic-release/[email protected]
@semantic-release/[email protected]
@semantic-release/[email protected]
@semantic-release/[email protected]
@semantic-release/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
This setup ensures your releases are automated, tracked, and managed efficiently within your GitHub repository.