cherrypick-interactive 1.14.6 → 1.14.8
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.
- package/cli.js +2 -2
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -1578,7 +1578,7 @@ async function main() {
|
|
|
1578
1578
|
|
|
1579
1579
|
log(chalk.green(`✓ package.json updated and committed: ${msg}`));
|
|
1580
1580
|
|
|
1581
|
-
await
|
|
1581
|
+
await gitRaw(['push', '-u', 'origin', releaseBranch, '--no-verify']);
|
|
1582
1582
|
|
|
1583
1583
|
const ghArgs = [
|
|
1584
1584
|
'pr',
|
|
@@ -1689,7 +1689,7 @@ async function ensureReleaseBranchFresh(branchName, startPoint) {
|
|
|
1689
1689
|
|
|
1690
1690
|
if (remoteExists) {
|
|
1691
1691
|
try {
|
|
1692
|
-
await gitRaw(['push', 'origin', '--delete', branchName]);
|
|
1692
|
+
await gitRaw(['push', 'origin', '--delete', branchName, '--no-verify']);
|
|
1693
1693
|
log(chalk.yellow(`↷ Deleted existing remote branch origin/${branchName}`));
|
|
1694
1694
|
} catch (e) {
|
|
1695
1695
|
err(chalk.red(`Failed to delete remote branch origin/${branchName}: ${e.message || e}`));
|
package/package.json
CHANGED