From 948d28d4bf4f02e3dba668c1124494ac330f1f85 Mon Sep 17 00:00:00 2001 From: Colin Dean Date: Thu, 6 Jan 2022 16:25:19 -0500 Subject: [PATCH] Syncs keys description for githubTokenSource with reality It was `git config github.token` previously but now it's GITHUB_TOKEN from the environment as of e64d8e9b9bf1a88a4c3aa0891a71bd48784078c1. --- src/main/scala/sbtghpackages/GitHubPackagesKeys.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/sbtghpackages/GitHubPackagesKeys.scala b/src/main/scala/sbtghpackages/GitHubPackagesKeys.scala index 41d91fb..153e553 100644 --- a/src/main/scala/sbtghpackages/GitHubPackagesKeys.scala +++ b/src/main/scala/sbtghpackages/GitHubPackagesKeys.scala @@ -22,7 +22,7 @@ trait GitHubPackagesKeys { val githubOwner = settingKey[String]("The github user or organization name") val githubRepository = settingKey[String]("The github repository hosting this package") - val githubTokenSource = settingKey[TokenSource]("Where to get the API token used in publication (defaults to github.token in the git config)") + val githubTokenSource = settingKey[TokenSource]("Where to get the API token used in publication (defaults to GITHUB_TOKEN in environment variables)") val githubSuppressPublicationWarning = settingKey[Boolean]("Whether or not to suppress the publication warning (default: false, meaning the warning will be printed)")