-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update semantic release process (#326)
* feat: update release definition to include docs updates triggering a patch release * feat: include commitlint in PR to main GHA * Update GHA titles, filenames * Ensure manual tests are manual * Add commitlint config
- Loading branch information
1 parent
36f49da
commit fbd5e37
Showing
4 changed files
with
38 additions
and
5 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
.github/workflows/on_push_to_feature.yaml → .github/workflows/manual_tests.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name: Run tests | ||
name: Manually run Test Suite | ||
|
||
on: | ||
push: | ||
# push: | ||
# branches: | ||
# - feature/** | ||
workflow_dispatch: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
plugins: | ||
- '@semantic-release/commit-analyzer': | ||
preset: | ||
"angular" | ||
preset: "angular" | ||
releaseRules: | ||
- type: "feat" | ||
release: "minor" | ||
- type: "fix" | ||
release: "patch" | ||
- type: "perf" | ||
release: "patch" | ||
- type: "docs" | ||
release: "patch" | ||
- type: "revert" | ||
release: "patch" | ||
- breaking: true | ||
release: "major" | ||
- '@semantic-release/release-notes-generator' | ||
- '@semantic-release/changelog' | ||
- '@semantic-release/github' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = { extends: ["@commitlint/config-conventional"] }; |