From 905fd7f6cbaa3941ea88358663fd472cf393b83f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Tue, 3 Oct 2023 16:09:10 +0200 Subject: [PATCH] add demo workflow --- .gitea/workflows/demo.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .gitea/workflows/demo.yaml diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml new file mode 100644 index 0000000..c58a2fc --- /dev/null +++ b/.gitea/workflows/demo.yaml @@ -0,0 +1,8 @@ +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions +on: [push] +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + - run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event."