mirror of
https://github.com/jlengrand/github-api.git
synced 2026-03-26 15:50:47 +00:00
38 lines
795 B
Java
38 lines
795 B
Java
package org.kohsuke.github;
|
|
|
|
/**
|
|
* How is an user associated with a repository?
|
|
*
|
|
* @author Kohsuke Kawaguchi
|
|
*/
|
|
public enum GHCommentAuthorAssociation {
|
|
/**
|
|
* Author has been invited to collaborate on the repository.
|
|
*/
|
|
COLLABORATOR,
|
|
/**
|
|
* Author has previously committed to the repository.
|
|
*/
|
|
CONTRIBUTOR,
|
|
/**
|
|
* Author has not previously committed to GitHub.
|
|
*/
|
|
FIRST_TIMER,
|
|
/**
|
|
* Author has not previously committed to the repository.
|
|
*/
|
|
FIRST_TIME_CONTRIBUTOR,
|
|
/**
|
|
* Author is a member of the organization that owns the repository.
|
|
*/
|
|
MEMBER,
|
|
/**
|
|
* Author has no association with the repository.
|
|
*/
|
|
NONE,
|
|
/**
|
|
* Author is the owner of the repository.
|
|
*/
|
|
OWNER
|
|
}
|