mirror of
https://github.com/wagoid/commitlint-github-action.git
synced 2025-11-07 16:06:56 +00:00
15 lines
363 B
JavaScript
15 lines
363 B
JavaScript
const actionYamlUpdater = require.resolve('./.github/tasks/actionYamlUpdater')
|
|
|
|
module.exports = {
|
|
packageFiles: ['package.json'],
|
|
bumpFiles: [
|
|
'package.json',
|
|
'package-lock.json',
|
|
{
|
|
filename: 'action.yml',
|
|
updater: actionYamlUpdater,
|
|
},
|
|
],
|
|
releaseCommitMessageFormat:
|
|
'chore(release): publish {{currentTag}} [skip-ci]',
|
|
}
|