├── .circleci └── config.yml ├── .dockerignore ├── .github ├── CODEOWNERS └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .swift-version ├── .xcode-version ├── BabylonCommands.md ├── CONTRIBUTING.md ├── LICENSE ├── Package.resolved ├── Package.swift ├── Procfile ├── Public └── .gitkeep ├── README.md ├── Sources ├── App │ ├── CRP │ │ ├── CRPProcess.swift │ │ ├── ChangelogSection.swift │ │ ├── JiraService+CRP.swift │ │ └── SlackCommand+CRP.swift │ ├── Extensions │ │ ├── CircleCIService+Extensions.swift │ │ ├── GitHubService+Release.swift │ │ ├── GithubService+IssueComment.swift │ │ └── SlackCommand+Options.swift │ ├── Fastlane │ │ └── SlackCommand+Fastlane.swift │ ├── MainCommand.swift │ ├── RepoMapping.swift │ ├── app.swift │ ├── configure.swift │ └── routes.swift ├── Run │ └── main.swift └── Stevenson │ ├── CircleCIService.swift │ ├── Codable Utils │ ├── AnyCodable.swift │ ├── CustomCodable.swift │ └── YMDDateCodableTransformer.swift │ ├── Errors.swift │ ├── GitHubService+Commits.swift │ ├── GitHubService.swift │ ├── JiraService+FieldTypes.swift │ ├── JiraService.swift │ ├── SlackService.swift │ └── SlowClient.swift ├── Tests ├── .gitkeep ├── AppTests │ ├── AppTests.swift │ ├── TestUtils.swift │ └── XCTestManifests.swift └── LinuxMain.swift ├── app.json ├── cloud.yml └── web.Dockerfile /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .build 3 | DerivedData 4 | Package.resolved 5 | *.xcodeproj 6 | 7 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.1 2 | -------------------------------------------------------------------------------- /.xcode-version: -------------------------------------------------------------------------------- 1 | 11.6 2 | 3 | -------------------------------------------------------------------------------- /BabylonCommands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/BabylonCommands.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Package.swift -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Procfile -------------------------------------------------------------------------------- /Public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/README.md -------------------------------------------------------------------------------- /Sources/App/CRP/CRPProcess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/App/CRP/CRPProcess.swift -------------------------------------------------------------------------------- /Sources/App/CRP/ChangelogSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/App/CRP/ChangelogSection.swift -------------------------------------------------------------------------------- /Sources/App/CRP/JiraService+CRP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/App/CRP/JiraService+CRP.swift -------------------------------------------------------------------------------- /Sources/App/CRP/SlackCommand+CRP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/App/CRP/SlackCommand+CRP.swift -------------------------------------------------------------------------------- /Sources/App/Extensions/CircleCIService+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/App/Extensions/CircleCIService+Extensions.swift -------------------------------------------------------------------------------- /Sources/App/Extensions/GitHubService+Release.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/App/Extensions/GitHubService+Release.swift -------------------------------------------------------------------------------- /Sources/App/Extensions/GithubService+IssueComment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/App/Extensions/GithubService+IssueComment.swift -------------------------------------------------------------------------------- /Sources/App/Extensions/SlackCommand+Options.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/App/Extensions/SlackCommand+Options.swift -------------------------------------------------------------------------------- /Sources/App/Fastlane/SlackCommand+Fastlane.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/App/Fastlane/SlackCommand+Fastlane.swift -------------------------------------------------------------------------------- /Sources/App/MainCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/App/MainCommand.swift -------------------------------------------------------------------------------- /Sources/App/RepoMapping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/App/RepoMapping.swift -------------------------------------------------------------------------------- /Sources/App/app.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/App/app.swift -------------------------------------------------------------------------------- /Sources/App/configure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/App/configure.swift -------------------------------------------------------------------------------- /Sources/App/routes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/App/routes.swift -------------------------------------------------------------------------------- /Sources/Run/main.swift: -------------------------------------------------------------------------------- 1 | import App 2 | 3 | try app(.detect()).run() 4 | -------------------------------------------------------------------------------- /Sources/Stevenson/CircleCIService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/Stevenson/CircleCIService.swift -------------------------------------------------------------------------------- /Sources/Stevenson/Codable Utils/AnyCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/Stevenson/Codable Utils/AnyCodable.swift -------------------------------------------------------------------------------- /Sources/Stevenson/Codable Utils/CustomCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/Stevenson/Codable Utils/CustomCodable.swift -------------------------------------------------------------------------------- /Sources/Stevenson/Codable Utils/YMDDateCodableTransformer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/Stevenson/Codable Utils/YMDDateCodableTransformer.swift -------------------------------------------------------------------------------- /Sources/Stevenson/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/Stevenson/Errors.swift -------------------------------------------------------------------------------- /Sources/Stevenson/GitHubService+Commits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/Stevenson/GitHubService+Commits.swift -------------------------------------------------------------------------------- /Sources/Stevenson/GitHubService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/Stevenson/GitHubService.swift -------------------------------------------------------------------------------- /Sources/Stevenson/JiraService+FieldTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/Stevenson/JiraService+FieldTypes.swift -------------------------------------------------------------------------------- /Sources/Stevenson/JiraService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/Stevenson/JiraService.swift -------------------------------------------------------------------------------- /Sources/Stevenson/SlackService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/Stevenson/SlackService.swift -------------------------------------------------------------------------------- /Sources/Stevenson/SlowClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Sources/Stevenson/SlowClient.swift -------------------------------------------------------------------------------- /Tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/AppTests/AppTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Tests/AppTests/AppTests.swift -------------------------------------------------------------------------------- /Tests/AppTests/TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Tests/AppTests/TestUtils.swift -------------------------------------------------------------------------------- /Tests/AppTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Tests/AppTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/app.json -------------------------------------------------------------------------------- /cloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/cloud.yml -------------------------------------------------------------------------------- /web.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/Stevenson/HEAD/web.Dockerfile --------------------------------------------------------------------------------