Skip to content

Commit

Permalink
Merge pull request #751 from jglick/isUsernameSecret-JENKINS-66675
Browse files Browse the repository at this point in the history
[JENKINS-66675] Do not treat `appID` as a secret
  • Loading branch information
jtnord authored Dec 8, 2023
2 parents c201a02 + 7262e35 commit 46825fd
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,11 @@ public String getUsername() {
return appID;
}

@Override
public boolean isUsernameSecret() {
return false;
}

@NonNull
public synchronized GitHubAppCredentials withOwner(@NonNull String owner) {
if (this.owner != null) {
Expand Down

0 comments on commit 46825fd

Please sign in to comment.