Rename GITEA_URL env var to generic VCS_URL for multi-host support #125
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Context
The action's
Run reviewstep passesGITEA_URLas an environment variable to thereview-botbinary. Now that the action supports both Gitea and GitHub/GHES, the name is misleading.Problem
GITEA_URLsuggests the binary only works with Gitea, but it's actually the generic VCS server URL used for both platforms.Proposed Fix
GITEA_URLtoVCS_URL(orSERVER_URL)GITEA_URLas a deprecated fallback for backwards compatibilityOrigin
Identified during PR #121 review (sonnet NIT #4, comment 21207).