fix: restore develop branch trigger support for CI workflows
Tests / test (pull_request) Successful in 1m1s
Push Develop / docker (push) Successful in 6m29s
Sync GitHub / sync (push) Successful in 10s
Tests / test (push) Successful in 1m0s

Re-adds 'develop' to push triggers in develop.yaml and tests.yaml
so the :develop Docker image can be built from the develop branch,
enabling dev testing without requiring a merge to main.
This commit is contained in:
2026-08-12 11:21:37 -04:00
parent 9ad54f8e2a
commit 44e4c60f80
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -4,6 +4,7 @@ on:
push:
branches:
- 'main'
- 'develop'
jobs:
docker:
+2
View File
@@ -4,9 +4,11 @@ on:
push:
branches:
- 'main'
- 'develop'
pull_request:
branches:
- 'main'
- 'develop'
jobs:
test: