Private
Public Access
1
0

Compare commits

..

2 Commits

Author SHA1 Message Date
c1ed760358 Merge fix/maintenance-windows-race-condition: resolve maintenance windows race condition and N+1 query
All checks were successful
CI Pipeline / Rust Format Check (push) Successful in 3s
CI Pipeline / Clippy Lints (push) Successful in 1m0s
CI Pipeline / Rust Unit Tests (push) Successful in 1m23s
CI Pipeline / Security Audit (push) Successful in 4s
CI Pipeline / Frontend Lint & Type Check (push) Successful in 16s
CI Pipeline / Build .deb & Release (push) Successful in 4m29s
2026-05-22 03:28:59 +00:00
354e3205d3 fix: update repo paths from echo/ to git-echo/ after account migration
All checks were successful
CI Pipeline / Rust Format Check (push) Successful in 4s
CI Pipeline / Clippy Lints (push) Successful in 1m3s
CI Pipeline / Rust Unit Tests (push) Successful in 1m23s
CI Pipeline / Security Audit (push) Successful in 4s
CI Pipeline / Frontend Lint & Type Check (push) Successful in 17s
CI Pipeline / Build .deb & Release (push) Has been skipped
2026-05-21 17:05:47 +00:00

View File

@ -7,7 +7,7 @@ Usage:
Environment variables:
GITEA_TOKEN - API token (required, falls back to GITHUB_TOKEN)
GITEA_URL - Gitea base URL (default: http://192.168.2.189:3000)
GITEA_REPO - Repository path (default: echo/linux_patch_manager)
GITEA_REPO - Repository path (default: git-echo/linux_patch_manager)
"""
import argparse
import json
@ -89,7 +89,7 @@ def main():
sys.exit(1)
base_url = os.environ.get("GITEA_URL", "http://192.168.2.189:3000")
repo = os.environ.get("GITEA_REPO", "echo/linux_patch_manager")
repo = os.environ.get("GITEA_REPO", "git-echo/linux_patch_manager")
title = f"Release {args.version}"
body = (