release-please 17.5.0 → 17.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,4 +14,4 @@ export { Logger, setLogger } from './util/logger';
14
14
  export { GitHub } from './github';
15
15
  export declare const configSchema: any;
16
16
  export declare const manifestSchema: any;
17
- export declare const VERSION = "17.5.0";
17
+ export declare const VERSION = "17.5.1";
@@ -36,6 +36,6 @@ Object.defineProperty(exports, "GitHub", { enumerable: true, get: function () {
36
36
  exports.configSchema = require('../../schemas/config.json');
37
37
  exports.manifestSchema = require('../../schemas/manifest.json');
38
38
  // x-release-please-start-version
39
- exports.VERSION = '17.5.0';
39
+ exports.VERSION = '17.5.1';
40
40
  // x-release-please-end
41
41
  //# sourceMappingURL=index.js.map
@@ -564,7 +564,9 @@ class LocalGitHub {
564
564
  await fs.promises.writeFile(msgFile, message);
565
565
  await execFile('git', ['add', '.'], { cwd: this.cloneDir });
566
566
  try {
567
- await execFile('git', ['commit', '-F', msgFile], { cwd: this.cloneDir });
567
+ await execFile('git', ['commit', '--no-verify', '-F', msgFile], {
568
+ cwd: this.cloneDir,
569
+ });
568
570
  }
569
571
  catch (err) {
570
572
  const error = err;
@@ -579,7 +581,7 @@ class LocalGitHub {
579
581
  await fs.promises.unlink(msgFile).catch(() => { });
580
582
  }
581
583
  // Push transit
582
- await execFile('git', ['push', '-f', 'origin', branch], {
584
+ await execFile('git', ['push', '--no-verify', '-f', 'origin', branch], {
583
585
  cwd: this.cloneDir,
584
586
  });
585
587
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "release-please",
3
- "version": "17.5.0",
3
+ "version": "17.5.1",
4
4
  "description": "generate release PRs based on the conventionalcommits.org spec",
5
5
  "main": "./build/src/index.js",
6
6
  "bin": "./build/src/bin/release-please.js",