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!"