From bb9f92a7d2f3ce1321659d845e18ec59604d324b Mon Sep 17 00:00:00 2001 From: gitea Date: Tue, 25 Nov 2025 11:29:32 +0330 Subject: [PATCH] added cicd.yaml --- .gitea/workflows/cicd.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitea/workflows/cicd.yaml diff --git a/.gitea/workflows/cicd.yaml b/.gitea/workflows/cicd.yaml new file mode 100644 index 0000000..23541be --- /dev/null +++ b/.gitea/workflows/cicd.yaml @@ -0,0 +1,20 @@ +name: Hello from Gitea Actions + +on: + push: # run on every push + branches: + - main # adjust if your default branch is different + +jobs: + hello: + runs-on: devops # must match your runner's label + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Say hello + run: | + echo "Hello from Gitea Actions!" + echo "Runner: ${{ runner.name }}" + echo "Repo: ${{ gitea.repository }}" +