- DOMAIN_TYPES_ALL: keycloak/admin/portal/dash, docs.d-bis.org, blockscout.defi-oracle.io (web) - E2E_OPTIONAL_WHEN_FAIL: same set for soft failures off-LAN - Optional Blockscout /api/v2/stats for blockscout.defi-oracle.io - print-gitea-actions-urls.sh: browser URLs (Actions API not relied on) - E2E_ENDPOINTS_LIST + FQDN inventory alignment updated Made-with: Cursor
17 lines
494 B
Bash
Executable File
17 lines
494 B
Bash
Executable File
#!/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
|