-
Notifications
You must be signed in to change notification settings - Fork 120
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
Saas api key #134
Saas api key #134
Conversation
Current coverage is
|
@@ -23,9 +23,11 @@ | |||
private static Integer SOME_PULL_REQUEST_ID = 12314; | |||
private static String SOME_REPOSITORY = "repo"; | |||
private static String SOME_PROJECT = "proj"; | |||
private static String SOME_API_KEY = "my_api_key"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Checkstyle] ERROR: Name 'SOME_API_KEY' must match pattern '^[a-z][a-zA-Z0-9]*$'.
private static Integer SOME_PULL_REQUEST_ID = 12314; | ||
private static String SOME_REPOSITORY = "repo"; | ||
private static String SOME_PROJECT = "proj"; | ||
private final static Integer SOME_PULL_REQUEST_ID = 12314; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Checkstyle] ERROR: 'static' modifier out of order with the JLS suggestions.
@@ -9,7 +9,8 @@ | |||
CONF("cli.conf", "Configuration properties file", null), | |||
CHANGE_ID("cli.changeId", "Gerrit change id", null), | |||
REVISION_ID("cli.revisionId", "Gerrit revision id", null), | |||
PULL_REQUEST_ID("cli.pullRequestId", "Stash pull request id", null); | |||
PULL_REQUEST_ID("cli.pullRequestId", "Stash pull request id", null), | |||
API_KEY("cli.apiKey", "Optional API key", null); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I miss an information in description: what is this API key intended for?
Only one comment on my side. |
Documented apiKey parameter |
Saas api key
No description provided.