This is an automated email from the ASF dual-hosted git repository.
ndimiduk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/master by this push:
new 7183bbde046 HBASE-30373 Expose GITHUB_REPO to external environment
(#8632)
7183bbde046 is described below
commit 7183bbde046800b83b511b3677b6d8a3db4e6dd9
Author: Nick Dimiduk <[email protected]>
AuthorDate: Wed Sep 9 15:21:15 2026 +0200
HBASE-30373 Expose GITHUB_REPO to external environment (#8632)
Permit GITHUB_REPO variable override from execution environment. Support
Github Action runner
environment variable by default. Fallback to original hard-coded value.
Signed-off-by: Duo Zhang <[email protected]>
---
dev-support/hbase-personality.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index 75a462eea5a..703de3255f6 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -75,7 +75,7 @@ function personality_globals
#shellcheck disable=SC2034
JIRA_ISSUE_RE='^HBASE-[0-9]+$'
#shellcheck disable=SC2034
- GITHUB_REPO="apache/hbase"
+ GITHUB_REPO="${GITHUB_REPO:-${GITHUB_REPOSITORY:-apache/hbase}}"
# TODO use PATCH_BRANCH to select jdk versions to use.