2026-03-26 16:20:40 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
# vault-env.sh — Shared vault environment: loads lib/env.sh and activates
|
|
|
|
|
# vault-bot's Forgejo identity (#747).
|
|
|
|
|
# Source this instead of lib/env.sh in vault scripts.
|
|
|
|
|
|
|
|
|
|
# shellcheck source=../lib/env.sh
|
|
|
|
|
source "$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)/lib/env.sh"
|
|
|
|
|
# Use vault-bot's own Forgejo identity
|
|
|
|
|
FORGE_TOKEN="${FORGE_VAULT_TOKEN:-${FORGE_TOKEN}}"
|
2026-03-29 12:43:18 +00:00
|
|
|
|
2026-03-31 20:38:05 +00:00
|
|
|
# Vault redesign in progress (PR-based approval workflow)
|
|
|
|
|
# This file is kept for shared env setup; scripts being replaced by #73
|