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
--body "New JupyterLab release [v${LATEST}](https://github.com/jupyterlab/jupyterlab/releases/tag/v${LATEST}) is available. Please review the lock file carefully."
119
-
)
132
+
git push --set-upstream origin "${BRANCH_NAME}"
120
133
121
-
# Add --repo flag only if target_repo is specified
122
-
if [[ -n "${{ inputs.target_repo }}" ]]; then
123
-
PR_ARGS+=(--repo "${{ inputs.target_repo }}")
124
-
fi
134
+
PR_ARGS=(
135
+
--base "${{ inputs.branch || 'main' }}"
136
+
--title "Update to JupyterLab v${LATEST}"
137
+
--body "New JupyterLab release [v${LATEST}](https://github.com/jupyterlab/jupyterlab/releases/tag/v${LATEST}) is available. Please review the lock file carefully."
138
+
)
125
139
126
-
gh pr create "${PR_ARGS[@]}"
140
+
# Add --repo flag only if target_repo is specified
0 commit comments