Skip to content

Commit

Permalink
working
Browse files Browse the repository at this point in the history
  • Loading branch information
GrantBirki committed Apr 25, 2024
1 parent d207eb7 commit 68bf204
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ projects:
type: "git"
location: "local" # local or remote
path: "/path/to/project-1" # local path or remote url
triggers: # events that runway looks for to trigger a deployment
- type: github_deployment # when a github deployment is created in the repo, runway will deploy the project
repo: runwayapp/test-flight
7 changes: 7 additions & 0 deletions src/models/config.cr
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,11 @@ class Project
property type : String
property location : String
property path : String
property triggers : Array(Trigger)
end

class Trigger
include YAML::Serializable
property type : String
property repo : String?
end

0 comments on commit 68bf204

Please sign in to comment.