From a3987254f06b6a87f957e5703bf48c896eb923a6 Mon Sep 17 00:00:00 2001 From: clan-tool Date: Wed, 3 Sep 2025 17:26:50 +0200 Subject: [PATCH] add initial action --- .forgejo/workflows/action.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .forgejo/workflows/action.yml diff --git a/.forgejo/workflows/action.yml b/.forgejo/workflows/action.yml new file mode 100644 index 0000000..4aac00e --- /dev/null +++ b/.forgejo/workflows/action.yml @@ -0,0 +1,16 @@ +name: Test action + +on: + workflow_dispatch: + push: + branches: + - main + +jobs: + hello: + name: Print hello world + runs-on: default + steps: + - name: Echo + run: | + echo "Hello, world!" \ No newline at end of file