#!/usr/bin/env bash # Print Gitea Actions UI URLs (no token). Use after pushing complete-credential / cc-* repos. # Gitea REST "actions runs" APIs vary by version; the web UI is the reliable check. set -euo pipefail GITEA_URL="${GITEA_URL:-https://gitea.d-bis.org}" ORG="${GITEA_ORG:-DBIS}" REPOS=( complete-credential cc-shared-authz cc-audit-ledger cc-eidas-connector ) echo "Open in browser (Actions tab):" for r in "${REPOS[@]}"; do echo " ${GITEA_URL}/${ORG}/${r}/actions" done