From 51cd4a7dc287f6f801cd9005830ee638417a749d Mon Sep 17 00:00:00 2001 From: Hardik Date: Thu, 11 Jun 2026 16:40:06 +0530 Subject: [PATCH] ci: runner smoke test --- .forgejo/workflows/ci-smoke.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .forgejo/workflows/ci-smoke.yml diff --git a/.forgejo/workflows/ci-smoke.yml b/.forgejo/workflows/ci-smoke.yml new file mode 100644 index 0000000..1afe04d --- /dev/null +++ b/.forgejo/workflows/ci-smoke.yml @@ -0,0 +1,9 @@ +name: Runner smoke test +on: + push: + branches: [ci-smoke] +jobs: + smoke: + runs-on: host + steps: + - run: echo "runner OK on $(hostname) as $(whoami)"