mirror of
https://github.com/scratchfoundation/scratch-sb1-converter.git
synced 2024-11-21 10:48:13 -05:00
15 lines
286 B
JavaScript
15 lines
286 B
JavaScript
|
module.exports = {
|
||
|
extends: 'scratch-semantic-release-config',
|
||
|
branches: [
|
||
|
{
|
||
|
name: 'develop'
|
||
|
// default channel
|
||
|
},
|
||
|
{
|
||
|
name: 'hotfix/*',
|
||
|
channel: 'hotfix',
|
||
|
prerelease: 'hotfix'
|
||
|
}
|
||
|
]
|
||
|
};
|