@@ -45,10 +45,10 @@ async function config() {
45
45
branches : [
46
46
'release' ,
47
47
{ name : 'alpha' , prerelease : true } ,
48
- { name : 'beta' , prerelease : true } ,
48
+ // { name: 'beta', prerelease: true },
49
49
'next-major' ,
50
- // Long-Term-Support branch of previous major version
51
- 'release-6 .x.x' ,
50
+ // Long-Term-Support branch
51
+ 'release-8 .x.x' ,
52
52
] ,
53
53
dryRun : false ,
54
54
debug : true ,
@@ -62,13 +62,13 @@ async function config() {
62
62
{ scope : 'no-release' , release : false } ,
63
63
] ,
64
64
parserOpts : {
65
- noteKeywords : [ 'BREAKING CHANGE' , 'BREAKING CHANGES' , 'BREAKING' ] ,
65
+ noteKeywords : [ 'BREAKING CHANGE' ] ,
66
66
} ,
67
67
} ] ,
68
68
[ '@semantic-release/release-notes-generator' , {
69
69
preset : 'angular' ,
70
70
parserOpts : {
71
- noteKeywords : [ 'BREAKING CHANGE' , 'BREAKING CHANGES' , 'BREAKING' ]
71
+ noteKeywords : [ 'BREAKING CHANGE' ]
72
72
} ,
73
73
writerOpts : {
74
74
commitsSort : [ 'subject' , 'scope' ] ,
@@ -97,8 +97,9 @@ async function config() {
97
97
"@saithodev/semantic-release-backmerge" ,
98
98
{
99
99
"backmergeBranches" : [
100
- { from : "beta" , to : "alpha" } ,
101
- { from : "release" , to : "beta" } ,
100
+ // { from: 'beta', to: 'alpha' },
101
+ // { from: 'release', to: 'beta' },
102
+ { from : 'release' , to : 'alpha' } ,
102
103
]
103
104
}
104
105
] ,
0 commit comments