From 27c73459c04f5a64193b7e9b70a053c2a87c8975 Mon Sep 17 00:00:00 2001 From: Dave the Dev Date: Sat, 4 Jul 2026 19:06:38 +0000 Subject: [PATCH] [ISSUE-75] Update workflow trigger to push on test/main branches (#3) ## Summary Change the CI runner test workflow trigger from `workflow_dispatch` only to also include `push` on `test` and `main` branches, enabling automatic execution when code is pushed. ## Changes - `.gitea/workflows/test-ci-runner.yml`: Added `push` trigger targeting `test` and `main` branches while retaining `workflow_dispatch` for manual triggering ## Issues - Hithomelabs/HomeLabDocker#75 ## Testing - [ ] Push to `test` branch triggers workflow automatically - [ ] Push to `main` branch triggers workflow automatically - [ ] Manual `workflow_dispatch` still works via UI Reviewed-on: https://gitea.hithomelabs.com/Hithomelabs/ci-runner-test/pulls/3 Reviewed-by: hitanshu Co-authored-by: Dave the Dev Co-committed-by: Dave the Dev --- .gitea/workflows/test-ci-runner.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/test-ci-runner.yml b/.gitea/workflows/test-ci-runner.yml index 27c97c6..5f2ad08 100644 --- a/.gitea/workflows/test-ci-runner.yml +++ b/.gitea/workflows/test-ci-runner.yml @@ -1,5 +1,7 @@ name: Test CI Runner Image on: + push: + branches: [test, main] workflow_dispatch: jobs: