ci: use locally generated changelog instead of github actions

this commit replaces the previous workflow of bumping version, generating changelog, and tagging release using github actions with a local one(using
`commit-and-tag-version`)
This commit is contained in:
zyachel
2023-01-28 22:05:21 +05:30
parent c79dc2a481
commit 68072b5f68
3 changed files with 40 additions and 29 deletions

36
.versionrc Normal file
View File

@ -0,0 +1,36 @@
{
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"hidden": true
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "perf",
"hidden": true
},
{
"type": "test",
"hidden": true
}
]
}