| Type | Name and description |
|---|---|
java.lang.String |
getReadOnlyAuthToken()GitHub read only auth token. |
java.lang.String |
getRepository()GitHub repository name, for example: "mockito/mockito" |
java.lang.String |
getWriteAuthToken()GitHub write auth token to be used for pushing code to GitHub. |
java.lang.String |
getWriteAuthUser()GitHub user associated with the write auth token. |
void |
setReadOnlyAuthToken(java.lang.String token)See getReadOnlyAuthToken() |
void |
setRepository(java.lang.String repository)See getRepository() |
void |
setWriteAuthToken(java.lang.String writeAuthToken) |
void |
setWriteAuthUser(java.lang.String user)See getWriteAuthUser() |
| Methods inherited from class | Name |
|---|---|
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
GitHub read only auth token. Since the token is read-only it is ok to check that in to VCS.
GitHub repository name, for example: "mockito/mockito"
GitHub write auth token to be used for pushing code to GitHub. Auth token is used with the user specified in getWriteAuthUser(). WARNING: please don't commit the write auth token to VCS. Instead export "GH_WRITE_TOKEN" environment variable. The env variable value will be automatically returned by this method.
GitHub user associated with the write auth token. Needed for the release process to push changes.
See getRepository()
repository - name of the repo, including user or organization section, for example: "mockito/mockito"