From 1b66b64dc0e17cdcb8b55cc5c20eeb4e8812fa30 Mon Sep 17 00:00:00 2001 From: Shaun Hoffer Date: Mon, 10 Jun 2024 08:24:30 -0400 Subject: [PATCH] added a basic workflow --- README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6140816..21388b7 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,14 @@ -# woodpeckerci-examples +# Woodpecker CI Example +Here are some examples for our CI interfacee. The following is a comprehensive list on what is supported to use with it. +## Basic start off +Below is a basic workflow that echos an output to the log. + +```yaml +steps: + testmessage: + image: ubuntu + commands: + - echo "Hello world" + - echo "I run on TTGit" +``` \ No newline at end of file