mirror of
https://github.com/scratchfoundation/scratch-storage.git
synced 2024-11-14 19:25:32 -05:00
14 lines
286 B
JavaScript
14 lines
286 B
JavaScript
module.exports = {
|
|
extends: 'scratch-semantic-release-config',
|
|
branches: [
|
|
{
|
|
name: 'develop'
|
|
// default channel
|
|
},
|
|
{
|
|
name: 'hotfix/*',
|
|
channel: 'hotfix',
|
|
prerelease: 'hotfix'
|
|
}
|
|
]
|
|
};
|