Skip to content

Commit 16137fa

Browse files
Merge pull request #305 from alejandrohdezma/feature/some-fixes
Avoid warnings for unused keys
2 parents d120260 + 48e5df8 commit 16137fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sbt-github/src/main/scala/com/alejandrohdezma/sbt/github/SbtGithubKeys.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ trait SbtGithubKeys {
6262

6363
val excludedContributors = settingKey[List[String]] {
6464
"ID (Github login) of the contributors that should be excluded from the list, like bots, it can also be regex patterns"
65-
}
65+
}.withRank(KeyRanks.Invisible)
6666

6767
val repository = settingKey[Option[Repository]] {
6868
"Repository information downloaded from Github"
@@ -80,7 +80,7 @@ trait SbtGithubKeys {
8080
"The ID of the Github organization to be used when populating `organizationName`, `organizationEmail` " +
8181
"and `organizationHomepage`. If no organization is provided, those settings will be populated with the " +
8282
"information of the repository's organization."
83-
}
83+
}.withRank(KeyRanks.Invisible)
8484

8585
val organizationEmail = settingKey[Option[String]] {
8686
"Organization email"

0 commit comments

Comments
 (0)