You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return{success: false,error: `Branch ${branchName} does not exist on origin, can't push to it: ${verifyErrorinstanceofError ? verifyError.message : String(verifyError)}`};
Copy file name to clipboardExpand all lines: pkg/parser/schemas/main_workflow_schema.json
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -7074,6 +7074,11 @@
7074
7074
"enum": ["warn", "error", "ignore"],
7075
7075
"description": "Behavior when no changes to push: 'warn' (default - log warning but succeed), 'error' (fail the action), or 'ignore' (silent success)"
7076
7076
},
7077
+
"ignore-missing-branch-failure": {
7078
+
"type": "boolean",
7079
+
"description": "When true, treat deleted/missing pull request branch errors as a skipped push instead of a hard failure. Useful when the PR branch may be deleted before safe outputs run.",
7080
+
"default": false
7081
+
},
7077
7082
"commit-title-suffix": {
7078
7083
"type": "string",
7079
7084
"description": "Optional suffix to append to generated commit titles (e.g., ' [skip ci]' to prevent triggering CI on the commit)"
0 commit comments