From 2863d2b0d2cc38a244f68729586c1f2b43e5b376 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Sat, 10 Jul 2021 13:51:52 -0700 Subject: [PATCH] Add some stub test/example projects --- projects.d/hello.yml | 12 ++++++++++++ projects.d/y10n.yml | 11 +++++++++++ 2 files changed, 23 insertions(+) create mode 100644 projects.d/hello.yml create mode 100644 projects.d/y10n.yml 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"