Skip to content

Commit

Permalink
fix: Updated to move to main.
Browse files Browse the repository at this point in the history
  • Loading branch information
Donald Labaj committed Sep 19, 2024
1 parent 1befd88 commit 05df99c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
pull_request:
branches:
- main
- v6
- v5
jobs:
call-build-lint-test-workflow:
uses: ./.github/workflows/build-lint-test.yml
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
push:
branches:
- main
- v6
- v5
jobs:
call-build-lint-test-workflow:
uses: ./.github/workflows/build-lint-test.yml
Expand Down
11 changes: 4 additions & 7 deletions packages/module/release.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module.exports = {
branches: [
'do-not-delete',
{ name: 'main', channel: 'prerelease', prerelease: 'prerelease' },
{ name: 'v6', channel: 'alpha', prerelease: 'alpha' }
{ name: 'v5', channel: 'prerelease-v5', range: '5.x' },
{ name: 'main', channel: 'prerelease', prerelease: 'prerelease' }
],
analyzeCommits: {
preset: 'angular'
Expand All @@ -12,16 +12,13 @@ module.exports = {
'@semantic-release/commit-analyzer',
{
preset: 'angular',
releaseRules: [
{ type: 'chore', scope: 'deps', release: 'patch' },
{ type: 'chore', scope: 'release', release: 'patch' }
]
releaseRules: [{ type: 'chore', scope: 'deps', release: 'patch' }]
}
],
'@semantic-release/release-notes-generator',
'@semantic-release/github',
'@semantic-release/npm'
],
tagFormat: 'prerelease-v${version}',
dryRun: false
dryRun: true
};

0 comments on commit 05df99c

Please sign in to comment.