[ISSUE-75] Update workflow trigger to push on test/main branches (#3)
Some checks failed
Test CI Runner Image / validate (push) Failing after 36s
Some checks failed
Test CI Runner Image / validate (push) Failing after 36s
## 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: #3 Reviewed-by: hitanshu <hitanshu98@gmail.com> Co-authored-by: Dave the Dev <davethedev@hithomelabs.com> Co-committed-by: Dave the Dev <davethedev@hithomelabs.com>
This commit is contained in:
parent
0ab8e3ebe7
commit
27c73459c0
@ -1,5 +1,7 @@
|
||||
name: Test CI Runner Image
|
||||
on:
|
||||
push:
|
||||
branches: [test, main]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user