diff --git a/.github/workflows/ci-pipeline.yaml b/.github/workflows/ci-pipeline.yaml index d1bde72..a7006c9 100644 --- a/.github/workflows/ci-pipeline.yaml +++ b/.github/workflows/ci-pipeline.yaml @@ -11,6 +11,7 @@ on: branches: - main pull_request: + workflow_dispatch: jobs: build-verification: diff --git a/.releaserc b/.releaserc index 086ad8e..eac1edb 100644 --- a/.releaserc +++ b/.releaserc @@ -3,14 +3,30 @@ "main" ], "plugins": [ - "@semantic-release/commit-analyzer", - "@semantic-release/release-notes-generator", + "@semantic-release/commit-analyzer", + "@semantic-release/release-notes-generator", "@semantic-release/github" ], "releaseRules": [ - { "breaking": true, "release": "major" }, - { "revert": true, "release": "patch" }, - { "type": "feat", "release": "minor" }, - { "message": "*", "release": "patch" } + { + "breaking": true, + "release": "major" + }, + { + "revert": true, + "release": "patch" + }, + { + "type": "feat", + "release": "minor" + }, + { + "message": "*", + "release": "patch" + }, + { + "type": "*", + "release": "patch" + } ] -} \ No newline at end of file +}