We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c358ba commit 3d08aa1Copy full SHA for 3d08aa1
project/GithubEnv.scala
@@ -14,12 +14,12 @@ object GithubEnv {
14
for {
15
(_, repository) <- repositoryVar
16
(_, runId) <- runIdVar
17
- } yield "GITHUB_RUN" -> url(s"https://github.com/$repository/actions/runs/$runId")
+ } yield "GitHub Run" -> url(s"https://github.com/$repository/actions/runs/$runId")
18
lazy val treeUrl: Option[(String, URL)] =
19
20
21
(_, sha) <- shaVar
22
- } yield "GITHUB_TREE" -> url(s"https://github.com/$repository/tree/$sha")
+ } yield "GitHub Commit" -> url(s"https://github.com/$repository/tree/$sha")
23
24
25
def develocityValues: Seq[(String, String)] = repositoryVar.toSeq ++ shaVar ++ workflowVar
0 commit comments