[dotnet] [build] Fix remote linkage in SourceLink#17495
Merged
Conversation
Contributor
Review Summary by QodoFix SourceLink remote linkage with full commit hash
WalkthroughsDescription• Use full 40-character commit hash for SourceLink remote linkage • Add STABLE_GIT_REVISION_FULL parameter to build-info scripts • Update sourcelink.bzl to reference full revision instead of short hash • Ensure consistent commit hash format across bash and PowerShell scripts Diagramflowchart LR
A["build-info scripts<br/>bash & PowerShell"] -- "Generate STABLE_GIT_REVISION_FULL<br/>with full commit hash" --> B["sourcelink.bzl"]
B -- "Use full hash in<br/>SourceLink JSON" --> C["Remote repository links"]
File Changes1. dotnet/private/sourcelink.bzl
|
Contributor
Code Review by Qodo
1. build-info.ps1 ignores git failures
|
shs96c
added a commit
to shs96c/selenium
that referenced
this pull request
May 19, 2026
* origin/trunk: (97 commits) [py] update python dependencies (SeleniumHQ#17490) [build] fix renovate reported issues with configuration [build] remove base-ref from renovate workflows it does not work for the use case I had for them [build] add renovate dependency workflow (SeleniumHQ#17504) [build] simplify commit-changes workflow (SeleniumHQ#17503) [build] clarify dependency pin and update tasks (SeleniumHQ#17463) [build] do not rerun or attempt to upload logs unless workflow failure is from the Bazel step [build] fix renovate ignore rules_python to v2 until upstream fixed [build] renovate ignore rules_python until upstream fixed [build] bump rules_closure version (SeleniumHQ#17500) [build] bump rules_jvm_external (SeleniumHQ#17501) [js] remove npm dependency by using bazel for everything (SeleniumHQ#17499) [build] bump ruby versions to latest patch releases (SeleniumHQ#17496) [dotnet] [build] Support deterministic build output (SeleniumHQ#17497) [build] remove renovate update requests pending work done in SeleniumHQ#17427 (SeleniumHQ#17498) [dotnet] [build] Fix remote linkage in SourceLink (SeleniumHQ#17495) [rust] update reqwest to 0.13 (SeleniumHQ#17488) [build] bump low-risk Bazel module dependencies (SeleniumHQ#17494) [dotnet] run format against slnx instead of looping csproj (SeleniumHQ#17483) [build] ignore renovate.json references in renovate recommendations ... # Conflicts: # MODULE.bazel # rust/BUILD.bazel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The link should use full 40-length commit hash.
Continuation of #17467
💥 What does this PR do?
Use full commit hash.
🔧 Implementation Notes
Exposed new parameter in
build-infoscript.🤖 AI assistance
🔄 Types of changes