Merge pull request #133 from TriPSs/master

Release `git-push` option
releases/v3
Tycho Bokdam 2021-10-05 21:40:50 +02:00 committed by GitHub
commit d42e22e13a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 701 additions and 1166 deletions

View File

@ -34,6 +34,11 @@ inputs:
default: '--ff-only'
required: false
git-push:
description: 'Should all the git changes be push'
default: 'true'
required: false
preset:
description: 'The preset from Conventional Changelog to use'
default: 'angular'

1821
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -24,19 +24,19 @@
},
"main": "src/index.js",
"dependencies": {
"@actions/core": "1.2.6",
"@actions/exec": "1.0.4",
"@actions/core": "1.6.0",
"@actions/exec": "1.1.0",
"@iarna/toml": "^2.2.5",
"conventional-changelog": "3.1.23",
"conventional-recommended-bump": "6.0.10",
"git-semver-tags": "4.1.0",
"object-path": "^0.11.5",
"semver": "^7.3.2",
"yaml": "^1.10.0"
"conventional-changelog": "3.1.24",
"conventional-recommended-bump": "6.1.0",
"git-semver-tags": "4.1.1",
"object-path": "^0.11.8",
"semver": "^7.3.5",
"yaml": "^1.10.2"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@commitlint/cli": "13.2.0",
"@commitlint/config-conventional": "13.2.0",
"husky": "4.3.6"
}
}

View File

@ -28,6 +28,7 @@ async function run() {
const gitCommitMessage = core.getInput('git-message')
const gitUserName = core.getInput('git-user-name')
const gitUserEmail = core.getInput('git-user-email')
const gitPush = core.getInput('git-push').toLowerCase() === 'true'
const tagPrefix = core.getInput('tag-prefix')
const preset = !core.getInput('config-file-path') ? core.getInput('preset') : ''
const preCommitFile = core.getInput('pre-commit')
@ -68,7 +69,7 @@ async function run() {
const config = conventionalConfigFile && requireScript(conventionalConfigFile)
conventionalRecommendedBump({ preset, tagPrefix, config }, async(error, recommendation) => {
conventionalRecommendedBump({ preset, tagPrefix, config }, async (error, recommendation) => {
if (error) {
core.setFailed(error.message)
return
@ -172,8 +173,22 @@ async function run() {
// Create the new tag
await git.createTag(gitTag)
core.info('Push all changes')
await git.push()
if (gitPush) {
try {
core.info('Push all changes')
await git.push()
} catch (error) {
console.error(error)
core.setFailed(error)
return
}
} else {
core.info('We not going to push the GIT changes')
}
// Set outputs so other actions (for example actions/create-release) can use it
core.setOutput('changelog', stringChangelog)