From 6e0dee46522697f6d7143f2692887775d350adc4 Mon Sep 17 00:00:00 2001 From: MOIS3Y Date: Mon, 15 Jun 2026 15:58:48 +0900 Subject: [PATCH] ci: test hello job --- .gitea/workflows/hello.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/hello.yaml diff --git a/.gitea/workflows/hello.yaml b/.gitea/workflows/hello.yaml new file mode 100644 index 0000000..4e99ebb --- /dev/null +++ b/.gitea/workflows/hello.yaml @@ -0,0 +1,18 @@ +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} testing Gitea Actions 🚀 +on: [push] + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + - name: Checkout repository code + uses: actions/checkout@v4 + + - name: Say Hello + run: | + echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." + echo "🐧 This job is now running on a ${{ runner.os }} server!" + echo "🖥️ Working directory is ${{ gitea.workspace }}" + ls -la +