From 10abcbe82a00a81e23f264b1825753be2d14d044 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 26 Jul 2026 20:26:09 +0000 Subject: [PATCH] refine(app): label the gate action "Approve & open PR" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "Approve & ship" over-promised — approval pushes the branch and opens a PR; it never merges or deploys (merge stays a human action on GitHub). The clearer label states the actual boundary. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_011mApqAbr8vkLC7gUDjavu6 --- .../amethyst/ui/screen/loggedIn/buzz/WorkflowRunBoardScreen.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/buzz/WorkflowRunBoardScreen.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/buzz/WorkflowRunBoardScreen.kt index c50b34f02c..95fafc370f 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/buzz/WorkflowRunBoardScreen.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/buzz/WorkflowRunBoardScreen.kt @@ -371,7 +371,7 @@ private fun ApprovalActions( ) { Icon(symbol = MaterialSymbols.CheckCircle, contentDescription = null, modifier = Modifier.size(20.dp)) Spacer(Modifier.width(8.dp)) - Text("Approve & ship", style = MaterialTheme.typography.titleSmall, fontWeight = FontWeight.Bold) + Text("Approve & open PR", style = MaterialTheme.typography.titleSmall, fontWeight = FontWeight.Bold) } } }