From 262c60bf3bfb82817d71cc90273f99bbd50ea9f1 Mon Sep 17 00:00:00 2001 From: Christopher Hicks Date: Fri, 4 Oct 2024 12:26:08 -0700 Subject: [PATCH 1/3] =?UTF-8?q?=F0=9F=8D=8B=20[just]=20try=20pr=20create?= =?UTF-8?q?=20with=20github=20cli=20doing=20the=20fills?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- justfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index 62045ee..235f707 100644 --- a/justfile +++ b/justfile @@ -42,7 +42,8 @@ last_commit_message := `git log -1 --pretty=%B | grep .` pr: on_a_branch git stp git pushup - gh pr create --title "{{last_commit_message}}" --body "{{last_commit_message}} (Automated in justfile.)" + #gh pr create --title "{{last_commit_message}}" --body "{{last_commit_message}} (Automated in justfile.)" + gh pr create -f --file-verbose # PR merge and return to main branch merge: on_a_branch From ec6ab476f81de42ee4b6481629ee362d029594c1 Mon Sep 17 00:00:00 2001 From: Christopher Hicks Date: Fri, 4 Oct 2024 12:27:06 -0700 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=8D=89=20fix=20typo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 235f707..f8ccbb3 100644 --- a/justfile +++ b/justfile @@ -43,7 +43,7 @@ pr: on_a_branch git stp git pushup #gh pr create --title "{{last_commit_message}}" --body "{{last_commit_message}} (Automated in justfile.)" - gh pr create -f --file-verbose + gh pr create -f --fill-verbose # PR merge and return to main branch merge: on_a_branch From f47c0d61123ede5d4f3862df8b89016accedc762 Mon Sep 17 00:00:00 2001 From: Christopher Hicks Date: Fri, 4 Oct 2024 12:27:57 -0700 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=8D=8D=20only=20one=20fill=20option?= =?UTF-8?q?=20at=20a=20time=20(semi-expected)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index f8ccbb3..5fe3278 100644 --- a/justfile +++ b/justfile @@ -43,7 +43,7 @@ pr: on_a_branch git stp git pushup #gh pr create --title "{{last_commit_message}}" --body "{{last_commit_message}} (Automated in justfile.)" - gh pr create -f --fill-verbose + gh pr create --fill-verbose # PR merge and return to main branch merge: on_a_branch