Skip to content

Commit 7262e35

Browse files
committed
[JENKINS-66675] Do not treat appID as a secret
1 parent 51d5810 commit 7262e35

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/main/java/org/jenkinsci/plugins/github_branch_source/GitHubAppCredentials.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,11 @@ public String getUsername() {
323323
return appID;
324324
}
325325

326+
@Override
327+
public boolean isUsernameSecret() {
328+
return false;
329+
}
330+
326331
@NonNull
327332
public synchronized GitHubAppCredentials withOwner(@NonNull String owner) {
328333
if (this.owner != null) {

0 commit comments

Comments
 (0)