Skip to content

Commit

Permalink
[buildkite] use longer commit hash in linked builds (#25872)
Browse files Browse the repository at this point in the history
6 is to short to do lookup in github

## How I Tested These Changes

10 seems to be what is used elsewhere
  • Loading branch information
alangenfeld authored Dec 19, 2024
1 parent a1e8f85 commit 898ce98
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def build_trigger_step(
dagster_commit_hash = safe_getenv("BUILDKITE_COMMIT")
step: TriggerStep = {
"trigger": pipeline,
"label": f":link: {pipeline} from dagster@{dagster_commit_hash[:6]}",
"label": f":link: {pipeline} from dagster@{dagster_commit_hash[:10]}",
"async": async_step,
"build": {
"env": env or {},
Expand Down

0 comments on commit 898ce98

Please sign in to comment.