Skip to content

Commit 3d08aa1

Browse files
committed
Use natural language for Develocity labels
1 parent 8c358ba commit 3d08aa1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

project/GithubEnv.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ object GithubEnv {
1414
for {
1515
(_, repository) <- repositoryVar
1616
(_, runId) <- runIdVar
17-
} yield "GITHUB_RUN" -> url(s"https://github.com/$repository/actions/runs/$runId")
17+
} yield "GitHub Run" -> url(s"https://github.com/$repository/actions/runs/$runId")
1818
lazy val treeUrl: Option[(String, URL)] =
1919
for {
2020
(_, repository) <- repositoryVar
2121
(_, sha) <- shaVar
22-
} yield "GITHUB_TREE" -> url(s"https://github.com/$repository/tree/$sha")
22+
} yield "GitHub Commit" -> url(s"https://github.com/$repository/tree/$sha")
2323

2424

2525
def develocityValues: Seq[(String, String)] = repositoryVar.toSeq ++ shaVar ++ workflowVar

0 commit comments

Comments
 (0)