Last active
June 7, 2018 22:11
-
-
Save joan38/4e2d6259182d3533859c2e9cd38bf937 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| object Orkestra extends OrkestraServer with GithubHooks { | |
| lazy val board = Folder("Orkestra")( | |
| PullRequestChecks.board, | |
| CreateEnvironment.board | |
| ) | |
| lazy val jobs = Set(PullRequestChecks.job, CreateEnvironment.job) | |
| lazy val githubTriggers = Set( | |
| PullRequestTrigger(Repository("myOrganisation/myRepo"), PullRequestChecks.job)() | |
| ) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment