11
0
Fork 0
mirror of https://github.com/wagoid/commitlint-github-action.git synced 2026-03-31 14:56:58 +00:00

fix: do not run workflow commands in commit messages

This commit is contained in:
ylemkimon 2020-11-11 17:04:48 +00:00 committed by GitHub
parent 357a378538
commit d67c2ec96c
3 changed files with 26 additions and 4 deletions

View file

@ -1,5 +1,6 @@
const { existsSync } = require('fs')
const { resolve } = require('path')
const { v4: uuidv4 } = require('uuid')
const core = require('@actions/core')
const github = require('@actions/github')
const lint = require('@commitlint/lint').default
@ -135,6 +136,10 @@ const showLintResults = async ([from, to]) => {
generateOutputs(lintedCommits)
// disable workflow commands
const token = uuidv4()
console.log(`::stop-commands::${token}`)
if (hasOnlyWarnings(lintedCommits)) {
handleOnlyWarnings(formattedResults)
} else if (formattedResults) {
@ -142,6 +147,9 @@ const showLintResults = async ([from, to]) => {
} else {
console.log('Lint free! 🎉')
}
// enable workflow commands
console.log(`::${token}::`)
}
const exitWithMessage = message => error => {