Includes scratch-gui, scratch-vm, scratch-blocks, scratch-render, scratch-l10n, and deployment config. Co-authored-by: Cursor <cursoragent@cursor.com>
20 lines
439 B
JavaScript
20 lines
439 B
JavaScript
module.exports = {
|
|
extends: 'scratch-semantic-release-config',
|
|
branches: [
|
|
{
|
|
name: 'develop'
|
|
// default channel
|
|
},
|
|
{
|
|
name: 'hotfix/REPLACE', // replace with actual hotfix branch name
|
|
channel: 'hotfix',
|
|
prerelease: 'hotfix'
|
|
},
|
|
{
|
|
name: 'beta',
|
|
channel: 'beta',
|
|
prerelease: true
|
|
}
|
|
]
|
|
};
|