From f20c0c24e43d486f7a96e1c0e70d68a66effdcfb Mon Sep 17 00:00:00 2001 From: Nathan Nowack Date: Fri, 5 Jan 2024 12:57:40 -0600 Subject: [PATCH] explicit body --- src/pr_views_to_core.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pr_views_to_core.py b/src/pr_views_to_core.py index 8d2300f2..2d9d0461 100644 --- a/src/pr_views_to_core.py +++ b/src/pr_views_to_core.py @@ -24,7 +24,8 @@ git checkout -b {NEW_BRANCH} && git add {TARGET_FILE_PATH} && git commit -m "Update aggregate-worker-metadata.json" && - gh pr create --base main --head {NEW_BRANCH} --title "Automated PR for Worker Metadata Update" --fill + git push --set-upstream origin {NEW_BRANCH} && + gh pr create --base main --head {NEW_BRANCH} --title "Automated PR for Worker Metadata Update" --body "This is an automated PR to update the worker metadata." """ # noqa E501 subprocess.check_call(commands, shell=True)