From c0ef842e8aae215055e0a4701ac9541d3bee49b6 Mon Sep 17 00:00:00 2001 From: Sophie Eckenstaler <65605321+sopheck@users.noreply.github.com> Date: Fri, 1 Mar 2024 16:41:12 +0100 Subject: [PATCH] Create test-action.yml --- .github/workflows/test-action.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/test-action.yml diff --git a/.github/workflows/test-action.yml b/.github/workflows/test-action.yml new file mode 100644 index 0000000000..313dca1649 --- /dev/null +++ b/.github/workflows/test-action.yml @@ -0,0 +1,13 @@ +name: Echo Action + +on: + push: + branches: + - kdh-main + +jobs: + echo_message: + runs-on: ubuntu-latest + steps: + - name: Echo a message + run: echo "Das funktioniert!"