Skip to content

Commit

Permalink
fix: main branchname in semantic release config (#279)
Browse files Browse the repository at this point in the history
Signed-off-by: Curtish <ch@curtish.me>
  • Loading branch information
curtis-h authored Sep 2, 2024
1 parent bd64547 commit a6a72ff
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions release-dev.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
const baseConfig = require('./release.base.config');
module.exports = baseConfig({
branches: [
'master',
{
name: 'release/*',
prerelease: 'rc'
}
],
branches: [
'main',
{
name: 'release/*',
prerelease: 'rc'
}
],
});
14 changes: 7 additions & 7 deletions release-prod.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
const baseConfig = require('./release.base.config');
module.exports = baseConfig({
branches: [
'master',
{
name: 'release/*',
}
],
});
branches: [
'main',
{
name: 'release/*',
}
],
});

1 comment on commit a6a72ff

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lines Statements Branches Functions
Coverage: 76%
76.01% (2839/3735) 65.76% (1391/2115) 80.75% (730/904)

JUnit

Tests Skipped Failures Errors Time
527 6 💤 0 ❌ 0 🔥 56.315s ⏱️

Please sign in to comment.