chore: move repositories to GovOPlaN organization
Some checks failed
Dependency Audit / dependency-audit (push) Has been cancelled
Security Audit / security-audit (push) Has been cancelled

This commit is contained in:
2026-07-27 15:46:51 +02:00
parent 8d292184d4
commit ba88c574b9
33 changed files with 256 additions and 254 deletions

View File

@@ -226,7 +226,7 @@ PY
run_step "Clone release module test sources"
for repo in govoplan-mail govoplan-calendar govoplan-campaign; do
repo_tag="$(release_tag_for_package "$repo")"
git clone --depth 1 --branch "$repo_tag" "git@git.add-ideas.de:add-ideas/${repo}.git" "$WORK_ROOT/$repo"
git clone --depth 1 --branch "$repo_tag" "git@git.add-ideas.de:GovOPlaN/${repo}.git" "$WORK_ROOT/$repo"
done
run_step "Run core backend release tests"

View File

@@ -26,7 +26,7 @@ from govoplan_core.server.registry import available_module_manifests # noqa: E4
from govoplan_release.version_alignment import selected_repository_version_issues # noqa: E402
GITEA_BASE = "git+ssh://git@git.add-ideas.de/add-ideas"
GITEA_BASE = "git+ssh://git@git.add-ideas.de/GovOPlaN"
@dataclass(frozen=True, slots=True)

View File

@@ -53,7 +53,7 @@ from .workspace import (
website_root,
)
GITEA_BASE = "git+ssh://git@git.add-ideas.de/add-ideas"
GITEA_BASE = "git+ssh://git@git.add-ideas.de/GovOPlaN"
MAX_BASE_JSON_BYTES = 16 * 1024 * 1024
_SIGNING_KEY_ID = re.compile(r"^[A-Za-z0-9][A-Za-z0-9._:-]{0,159}$")

View File

@@ -76,7 +76,7 @@ def main() -> int:
)
selective.add_argument("--public-base-url", default="https://govoplan.add-ideas.de")
selective.add_argument(
"--repository-base", default="git+ssh://git@git.add-ideas.de/add-ideas"
"--repository-base", default="git+ssh://git@git.add-ideas.de/GovOPlaN"
)
selective.add_argument(
"--source-remote",

View File

@@ -68,7 +68,7 @@ class CatalogCandidateRequest(BaseModel):
expires_days: int = 90
sequence: int | None = None
public_base_url: str = "https://govoplan.add-ideas.de"
repository_base: str = "git+ssh://git@git.add-ideas.de/add-ideas"
repository_base: str = "git+ssh://git@git.add-ideas.de/GovOPlaN"
source_remote: str = "origin"
check_public: bool = True

View File

@@ -16,7 +16,9 @@ REGISTERED_TRANSPORT = "registered"
PUBLIC_HTTPS_TRANSPORT = "public-https"
GITEA_SSH_PREFIX = "git@git.add-ideas.de:"
GITEA_HTTPS_PREFIX = "https://git.add-ideas.de/"
GITEA_REPOSITORY_PATH = re.compile(r"add-ideas/[a-z0-9][a-z0-9-]*[.]git")
GITEA_REPOSITORY_PATH = re.compile(
r"(?:GovOPlaN|add-ideas)/[a-z0-9][a-z0-9-]*[.]git"
)
def parse_args(argv: list[str] | None = None) -> argparse.Namespace: