Skip to content

Commit

Permalink
#1253 used EnableRepoIssues on newProject(...) event
Browse files Browse the repository at this point in the history
  • Loading branch information
amihaiemil committed Oct 16, 2021
1 parent 5af1fe2 commit 0e31a8b
Showing 1 changed file with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -254,15 +254,17 @@ public BigDecimal contributorCommission(final BigDecimal value) {
@Override
public void newProject(final Event event) {
final Step steps = new InvitePm(
new SetupWebhook(
lastly -> {
final Project project = event.project();
LOG.debug(
"Finished setting up project "
+ project.repoFullName() + " at "
+ project.provider()
);
}
new EnableRepoIssues(
new SetupWebhook(
lastly -> {
final Project project = event.project();
LOG.debug(
"Finished setting up project "
+ project.repoFullName() + " at "
+ project.provider()
);
}
)
)
);
steps.perform(event);
Expand Down

0 comments on commit 0e31a8b

Please sign in to comment.