asdasd
All checks were successful
Deploy / deploy-staging (push) Successful in 27s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-06-25 01:00:06 +02:00
parent 487f592ca3
commit bd5cb9364c
10 changed files with 537 additions and 1 deletions

13
config/gitea.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
return [
'base_url' => 'https://gitea.int.kusche.berlin/api/v1',
'token' => '',
'owner' => 'private',
'repositories' => [],
'poll_idle_seconds' => 5,
'poll_running_seconds' => 1,
'visibility' => 'admins',
];

7
config/prod/gitea.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
declare(strict_types=1);
return [
'token' => '',
];

7
config/staging/gitea.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
declare(strict_types=1);
return [
'token' => 'cf22682c47cc40f820c47d6c1226dd48910b9add',
];