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