summaryrefslogtreecommitdiff
path: root/test/asset
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2026-09-12 11:05:16 +0200
committerRoman Smrž <roman.smrz@seznam.cz>2026-09-13 15:05:42 +0200
commit31c243d5679825362ca0f60042ad5f4f8a2ba6dc (patch)
tree59c9249946d7ca5eb742b6704ee8546feedbccd0 /test/asset
parent108114a076ed24ae998cf8b0222282321963dde4 (diff)
Add "writable" flag to repo required for pushing
Diffstat (limited to 'test/asset')
-rw-r--r--test/asset/publish/push.yaml11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/asset/publish/push.yaml b/test/asset/publish/push.yaml
index d82cd0b..8178226 100644
--- a/test/asset/publish/push.yaml
+++ b/test/asset/publish/push.yaml
@@ -1,7 +1,18 @@
repo source_repo:
+
repo target_repo:
+ path: "./target2.git"
+ writable: true
+
+repo target_repo_ro:
+ path: "./target3.git"
job push_job:
push:
- source: source_repo.commit
destination: target_repo.branch("master")
+
+job push_job_ro:
+ push:
+ - source: source_repo.commit
+ destination: target_repo_ro.branch("master")