gh-action-bump-version/index.js

51 lines
2.0 KiB
JavaScript
Raw Normal View History

2019-10-26 19:06:00 +00:00
const { Toolkit } = require('actions-toolkit')
const { execSync } = require('child_process')
// Run your GitHub Action!
Toolkit.run(async tools => {
console.log('context:', tools.context)
const pkg = tools.getPackageJSON()
const event = tools.context.payload
console.log('event:', event)
const messages = event.commits.map(commit => commit.message + '\n' + commit.body)
const commitMessage = 'version bump to'
const isVersionBump = messages.map(message => message.toLowerCase().includes(commitMessage)).includes(true)
if (isVersionBump) {
tools.exit.neutral('No _action_ necessary!')
return
}
let version = 'patch'
if (messages.map(message => message.includes('BREAKING CHANGE')).includes(true)) {
version = 'major'
} else if (messages.map(message => message.toLowerCase().startsWith('feat')).includes(true)) {
version = 'minor'
}
try {
const current = pkg.version.toString()
2019-10-26 19:26:43 +00:00
await tools.runInWorkspace('git', ['checkout', 'master'])
await tools.runInWorkspace('npm',
2019-10-26 19:35:29 +00:00
['version', '--allow-same-version=true', '--git-tag-version=false', current])
2019-10-26 19:06:00 +00:00
console.log('current:', current, '/', 'version:', version)
const newVersion = execSync(`npm version --git-tag-version=false ${version}`).toString()
console.log('new version:', newVersion)
2019-10-26 19:35:29 +00:00
await tools.runInWorkspace('git', ['commit', '-a', '-m', `"ci: ${commitMessage} ${newVersion}"`])
2019-10-26 19:06:00 +00:00
const remoteRepo = `https://${process.env.GITHUB_ACTOR}:${process.env.GITHUB_TOKEN}@github.com/${process.env.GITHUB_REPOSITORY}.git`
console.log('remoteRepo:', remoteRepo)
2019-10-26 19:35:29 +00:00
console.log('remoteRepo:', tools.context.repo)
2019-10-26 19:06:00 +00:00
2019-10-26 19:26:43 +00:00
await tools.runInWorkspace('git', ['tag', '-a', newVersion])
await tools.runInWorkspace('git', ['push', `"${remoteRepo}"`, '--follow-tags'])
await tools.runInWorkspace('git', ['push', `"${remoteRepo}"`, '--tags'])
2019-10-26 19:06:00 +00:00
} catch (e) {
2019-10-26 19:26:43 +00:00
tools.log.fatal(e)
tools.exit.failure('Failed to bump version')
2019-10-26 19:06:00 +00:00
}
tools.exit.success('Version bumped!')
})