Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add MANNEQUIN to GHCommentAuthorAssociation enum #1753

Merged
merged 4 commits into from
Nov 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ public enum GHCommentAuthorAssociation {
* Author has not previously committed to the repository.
*/
FIRST_TIME_CONTRIBUTOR,
/**
* Author is a placeholder for an unclaimed user.
*/
MANNEQUIN,
Copy link
Contributor Author

@choichanhyeok choichanhyeok Nov 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello @bitwiseman,

I wanted to express my gratitude for your review of my PR and for the adjustment you made to the 'MANNEQUIN' field. It was a detail I overlooked, and your your helpful modification not only corrected it but also improved the overall quality of the code. Your guidance and attention to detail are greatly appreciated.

This experience has been a valuable lesson for me in terms of attention to detail and has motivated me to be more thorough in my future contributions.

Thank you again for your support and for maintaining such a high standard in the project.

/**
* Author is a member of the organization that owns the repository.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/kohsuke/github/EnumTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public void touchEnums() {
assertThat(GHCheckRun.Conclusion.values().length, equalTo(9));
assertThat(GHCheckRun.Status.values().length, equalTo(4));

assertThat(GHCommentAuthorAssociation.values().length, equalTo(7));
assertThat(GHCommentAuthorAssociation.values().length, equalTo(8));

assertThat(GHCommitState.values().length, equalTo(4));

Expand Down