From 7e9e92a179cc05c07790a208a879470c3213bb63 Mon Sep 17 00:00:00 2001 From: git_admin Date: Mon, 27 Apr 2026 08:42:27 +0000 Subject: [PATCH] Tower: upload cetmix_tower_git 16.0.2.0.2 (via marketplace) --- addons/cetmix_tower_git/demo/demo_data.xml | 166 +++++++++++++++++++++ 1 file changed, 166 insertions(+) create mode 100644 addons/cetmix_tower_git/demo/demo_data.xml diff --git a/addons/cetmix_tower_git/demo/demo_data.xml b/addons/cetmix_tower_git/demo/demo_data.xml new file mode 100644 index 0000000..9f15679 --- /dev/null +++ b/addons/cetmix_tower_git/demo/demo_data.xml @@ -0,0 +1,166 @@ + + + + + + Demo Git Project + demo_git_project + This is a demo git project. + + + + https://github.com/cetmix-demo/cetmix-tower-demo.git + + + https://github.com/oca-demo/web-demo.git + + + https://github.com/odoo-demo/enterprise-demo.git + + + + https://gitlab.com/cetmix-demo/cetmix-tower-demo.git + + + + https://bitbucket.com/cetmix-demo/cetmix-tower-demo-enterprise.git + + + + + + Cetmix Tower + cetmix_tower + + + + + + + branch + 14.0 + + + + + pr + 176 + + + + OCA Web + oca_web + + + + + + + branch + 14.0 + + + + Odoo Enterprise (Private) + odoo_enterprise + + + + + + + branch + 19.0 + + + + + Sample Semi Private Gitlab + gitlab_private + + + + + + + branch + main + + + + + pr + 1234 + + + + Sample Private Bitbucket + bitbucket_private + + + + + + + branch + dev + + + + + commit + 1234567890 + + + + + repos.yaml + + tower + text + {{ instance_name }}/config + + + + + + + + git_aggregator + + + + + Demo Git URL + demo_git_url + + + + + Parse Git URL + python_code + +if {{ demo_git_url }}: + parsed_url = giturlparse.parse({{ demo_git_url }}) + repo = parsed_url.repo + owner = parsed_url.owner + host = parsed_url.host + platform = parsed_url.platform + message = "Repo: " + repo + ", Owner: " + owner + ", Host: " + host + ", Platform: " + platform + result={"exit_code": 0, "message": message} +else: + result={"exit_code": -100, "message": "Git URL is not defined!"} + + 1 + + Run Python Code: Check Branch + +