diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml index db57bdb..a2eef7f 100644 --- a/.github/workflows/development.yml +++ b/.github/workflows/development.yml @@ -1,6 +1,7 @@ name: Development on: + push: pull_request: branches: - "+([0-9])?(.{+([0-9]),x}).x" diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index 2942230..1eb4c46 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -5,6 +5,9 @@ on: branches: - main - beta + - next + - next-major + - "*.x" # maintenance releases branches jobs: Publish: diff --git a/.releaserc.json b/.releaserc.json index e843bb0..a628f02 100644 --- a/.releaserc.json +++ b/.releaserc.json @@ -5,6 +5,8 @@ "@semantic-release/commit-analyzer", { "releaseRules": [ + { "type": "feat", "release": "minor" }, + { "type": "fix", "release": "minor" }, { "type": "docs", "release": "patch" }, { "type": "refactor", "release": "patch" }, { "type": "revert", "release": "patch" }