From aa0436ebe0bf8876f313af928af3620096c1fc20 Mon Sep 17 00:00:00 2001 From: Rishab Kumar <45825464+rishabkumar7@users.noreply.github.com> Date: Tue, 6 Aug 2024 15:08:58 -0600 Subject: [PATCH 1/2] Added new holopin cli badge (#1399) Signed-off-by: Rishab Kumar Co-authored-by: Mukundan Sundararajan <65565396+mukundansundar@users.noreply.github.com> Co-authored-by: Mike Nguyen --- .github/holopin.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/holopin.yml b/.github/holopin.yml index 44a7f0c8..5e811759 100644 --- a/.github/holopin.yml +++ b/.github/holopin.yml @@ -1,6 +1,6 @@ organization: dapr -defaultSticker: clmjkxscc122740fl0mkmb7egi +defaultSticker: clutq4bgp107990fl1h4m7jp3b stickers: - - id: clmjkxscc122740fl0mkmb7egi - alias: ghc2023 + id: clutq4bgp107990fl1h4m7jp3b + alias: cli-badge From a3571c8464b08bba77a05706386c2e5a541a7385 Mon Sep 17 00:00:00 2001 From: Yetkin Timocin Date: Tue, 1 Oct 2024 09:17:12 -0700 Subject: [PATCH 2/2] Fix a typo (#1453) Signed-off-by: ytimocin --- cmd/stop.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/stop.go b/cmd/stop.go index fe214109..dd76baf1 100644 --- a/cmd/stop.go +++ b/cmd/stop.go @@ -98,7 +98,7 @@ dapr stop --run-file /path/to/directory -k func init() { StopCmd.Flags().StringVarP(&stopAppID, "app-id", "a", "", "The application id to be stopped") StopCmd.Flags().StringVarP(&runFilePath, "run-file", "f", "", "Path to the run template file for the list of apps to stop") - StopCmd.Flags().BoolVarP(&stopK8s, "kubernetes", "k", false, "Stop deployments in Kunernetes based on multi-app run file") + StopCmd.Flags().BoolVarP(&stopK8s, "kubernetes", "k", false, "Stop deployments in Kubernetes based on multi-app run file") StopCmd.Flags().BoolP("help", "h", false, "Print this help message") RootCmd.AddCommand(StopCmd) }