ci: Re-enable LINT_CI_SANITY_CHECK_COMMIT_SIG

With the move from cirrus-ci to GHA, the CIRRUS_REPO_FULL_NAME env var
was always unset, never triggering the sanity check.

Fix this by introducing a new vendor-agnostic env var and setting it
properly.
This commit is contained in:
MarcoFalke
2025-11-17 16:43:34 +01:00
parent faa0973de2
commit fa0ce4c148
2 changed files with 3 additions and 1 deletions

View File

@@ -38,6 +38,8 @@ def main():
extra_env = []
if os.environ["GITHUB_EVENT_NAME"] == "pull_request":
extra_env = ["--env", "LINT_CI_IS_PR=1"]
if os.environ["GITHUB_EVENT_NAME"] != "pull_request" and os.environ["GITHUB_REPOSITORY"] == "bitcoin/bitcoin":
extra_env = ["--env", "LINT_CI_SANITY_CHECK_COMMIT_SIG=1"]
run([
"docker",