aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2025-11-09 00:31:19 +0000
committersaturneric <[email protected]>2025-11-09 00:31:19 +0000
commit54a2dbbe4487f83cc3e55a4195073e81678c9d9c (patch)
tree3486182ea8ea35e4739bec22a94c747eb1a0f34e
parentfeat(dev-env): add development Docker setup (diff)
downloadcgit-54a2dbbe4487f83cc3e55a4195073e81678c9d9c.tar.gz
cgit-54a2dbbe4487f83cc3e55a4195073e81678c9d9c.zip
chore(ci): limit workflow to `saturneric` branch
* Restricts CI workflow execution to pushes on the `saturneric` branch * Prevents unnecessary runs on other branches, optimizing resource use * Clarifies workflow scope for targeted development or testing
-rw-r--r--.gitea/workflows/ci.yaml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml
index 8cf5ebd..c2da595 100644
--- a/.gitea/workflows/ci.yaml
+++ b/.gitea/workflows/ci.yaml
@@ -3,7 +3,13 @@ name: CI
# For all pushes to the main branch run the tests and push the image to the
# GitHub registry under an edge tag so we can use it for the nightly
# integration tests
-on: [push]
+on:
+ push:
+ branches:
+ - saturneric
+
+# only for branch saturneric
+
jobs:
docker: