Skip to content

Commit

Permalink
Use natural language for Develocity labels
Browse files Browse the repository at this point in the history
  • Loading branch information
adpi2 committed Aug 27, 2024
1 parent 8c358ba commit 3d08aa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project/GithubEnv.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ object GithubEnv {
for {
(_, repository) <- repositoryVar
(_, runId) <- runIdVar
} yield "GITHUB_RUN" -> url(s"https://github.com/$repository/actions/runs/$runId")
} yield "GitHub Run" -> url(s"https://github.com/$repository/actions/runs/$runId")
lazy val treeUrl: Option[(String, URL)] =
for {
(_, repository) <- repositoryVar
(_, sha) <- shaVar
} yield "GITHUB_TREE" -> url(s"https://github.com/$repository/tree/$sha")
} yield "GitHub Commit" -> url(s"https://github.com/$repository/tree/$sha")


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

0 comments on commit 3d08aa1

Please sign in to comment.