-
Notifications
You must be signed in to change notification settings - Fork 1
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
feat: GitHub connectors List events available in a project - MEED-2301 - Meeds-io/MIPs#64 #83
Conversation
…- Meeds-io/MIPs#64 Allow rewarding users to enable/disable project events
|
||
@Override | ||
public List<String> getEvents() { | ||
return new ArrayList<>(List.of(COMMENT_PULL_REQUEST_EVENT_NAME)); |
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.
return new ArrayList<>(List.of(COMMENT_PULL_REQUEST_EVENT_NAME)); | |
return Arrays.asList(COMMENT_PULL_REQUEST_EVENT_NAME); |
|
||
@Override | ||
public List<String> getEvents() { | ||
return new ArrayList<>(List.of(REVIEW_PULL_REQUEST_EVENT_NAME, PULL_REQUEST_VALIDATED_EVENT_NAME)); |
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.
return new ArrayList<>(List.of(REVIEW_PULL_REQUEST_EVENT_NAME, PULL_REQUEST_VALIDATED_EVENT_NAME)); | |
return Arrays.asList(REVIEW_PULL_REQUEST_EVENT_NAME, PULL_REQUEST_VALIDATED_EVENT_NAME); |
SonarCloud Quality Gate failed. 0 Bugs 0.0% Coverage Catch issues before they fail your Quality Gate with our IDE extension SonarLint |
…- Meeds-io/MIPs#64 (#83) Allow rewarding users to enable/disable project events
…- Meeds-io/MIPs#64 (#83) Allow rewarding users to enable/disable project events
…- Meeds-io/MIPs#64 (#83) Allow rewarding users to enable/disable project events
…- Meeds-io/MIPs#64 (#83) Allow rewarding users to enable/disable project events
…- Meeds-io/MIPs#64 (#83) Allow rewarding users to enable/disable project events
…- Meeds-io/MIPs#64 (#83) Allow rewarding users to enable/disable project events
Allow rewarding users to enable/disable project events