diff --git a/projects.d/hello.yml b/projects.d/hello.yml new file mode 100644 index 0000000..5d77b8f --- /dev/null +++ b/projects.d/hello.yml @@ -0,0 +1,12 @@ +--- +scm: + Git: + url: 'https://example.com/hello.git' +name: 'Hello World' +slug: 'hello-world' +description: 'A simple project' +trigger: Manual +script: | + #!/bin/sh + + echo "Hello World" diff --git a/projects.d/y10n.yml b/projects.d/y10n.yml new file mode 100644 index 0000000..8e886e8 --- /dev/null +++ b/projects.d/y10n.yml @@ -0,0 +1,11 @@ +--- +scm: + Git: + url: 'https://github.com/rtyler/y10n.git' +name: 'Yamlization' +slug: 'y10n' +description: 'The y10n simple translations library' +trigger: Manual +script: | + #!/bin/sh + echo "This is a script yo"