From 9ab687e306d9fe310eb36d5539c6dcf2371d8ed3 Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Tue, 7 Oct 2025 10:15:10 +0300 Subject: [PATCH] Migrate ci:watch to standalone script --- mise.toml | 8 -------- scripts/ci/watch | 7 +++++++ 2 files changed, 7 insertions(+), 8 deletions(-) create mode 100755 scripts/ci/watch diff --git a/mise.toml b/mise.toml index c30b3816..0906f56d 100644 --- a/mise.toml +++ b/mise.toml @@ -14,14 +14,6 @@ gh = 'latest' [task_config] includes = ["scripts"] -# PUBLIC TASKS - -# CI - -[tasks."ci:watch"] -description = "Monitor CI status" -run = "gh run watch" - # PRODUCTION [tasks."prod:console"] diff --git a/scripts/ci/watch b/scripts/ci/watch new file mode 100755 index 00000000..f23498d1 --- /dev/null +++ b/scripts/ci/watch @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +#MISE description="Watch CI running" + +set -e + +gh run watch