@@ -5641,10 +5641,10 @@ const { resolve } = __nccwpck_require__(6928)
56415641
56425642async function createWriterOpts () {
56435643 const [template, header, commit, footer] = await Promise.all([
5644- readFile(__nccwpck_require__.ab + "template1 .hbs", 'utf-8'),
5645- readFile(__nccwpck_require__.ab + "header1 .hbs", 'utf-8'),
5646- readFile(__nccwpck_require__.ab + "commit1 .hbs", 'utf-8'),
5647- readFile(__nccwpck_require__.ab + "footer1 .hbs", 'utf-8')
5644+ readFile(__nccwpck_require__.ab + "template .hbs", 'utf-8'),
5645+ readFile(__nccwpck_require__.ab + "header .hbs", 'utf-8'),
5646+ readFile(__nccwpck_require__.ab + "commit .hbs", 'utf-8'),
5647+ readFile(__nccwpck_require__.ab + "footer .hbs", 'utf-8')
56485648 ])
56495649 const writerOpts = getWriterOpts()
56505650
@@ -5985,10 +5985,10 @@ async function createWriterOpts (config) {
59855985 commit,
59865986 footer
59875987 ] = await Promise.all([
5988- readFile(__nccwpck_require__.ab + "template .hbs", 'utf-8'),
5989- readFile(__nccwpck_require__.ab + "header .hbs", 'utf-8'),
5990- readFile(__nccwpck_require__.ab + "commit .hbs", 'utf-8'),
5991- readFile(__nccwpck_require__.ab + "footer .hbs", 'utf-8')
5988+ readFile(__nccwpck_require__.ab + "template1 .hbs", 'utf-8'),
5989+ readFile(__nccwpck_require__.ab + "header1 .hbs", 'utf-8'),
5990+ readFile(__nccwpck_require__.ab + "commit1 .hbs", 'utf-8'),
5991+ readFile(__nccwpck_require__.ab + "footer1 .hbs", 'utf-8')
59925992 ])
59935993 const writerOpts = getWriterOpts(finalConfig)
59945994
@@ -23785,9 +23785,10 @@ module.exports = new (class Git {
2378523785 *
2378623786 * @return {Promise<>}
2378723787 */
23788- commit = (message) => (
23789- this.exec(`commit -m "${message}"`)
23790- )
23788+ commit = (message, options = {}) => {
23789+ const {noVerify} = options
23790+ return this.exec(`commit -m "${message}" ${noVerify ? "--no-verify" : ""}`)
23791+ }
2379123792
2379223793 /**
2379323794 * Pull the full history
@@ -35021,6 +35022,7 @@ async function run() {
3502135022 const createSummary = core.getBooleanInput('create-summary')
3502235023 const prerelease = core.getBooleanInput('pre-release')
3502335024 const skipBump = core.getBooleanInput('skip-bump')
35025+ const noVerify = core.getBooleanInput('no-verify')
3502435026
3502535027 if (skipCi) {
3502635028 gitCommitMessage += ' [skip ci]'
@@ -35172,7 +35174,7 @@ async function run() {
3517235174 }
3517335175
3517435176 await git.add('.')
35175- await git.commit(gitCommitMessage.replace('{version}', gitTag))
35177+ await git.commit(gitCommitMessage.replace('{version}', gitTag), {noVerify} )
3517635178 }
3517735179
3517835180 // Create the new tag
0 commit comments