From d63ccc459efe31f3237db7f4de2c5f0368395887 Mon Sep 17 00:00:00 2001 From: Gabriel Radureau Date: Mon, 6 Apr 2026 11:05:24 +0200 Subject: [PATCH 1/3] =?UTF-8?q?=F0=9F=A7=AA=20test:=20add=20official=20Git?= =?UTF-8?q?ea=20Actions=20demo=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/test-trigger.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitea/workflows/test-trigger.yaml diff --git a/.gitea/workflows/test-trigger.yaml b/.gitea/workflows/test-trigger.yaml new file mode 100644 index 0000000..51c96ee --- /dev/null +++ b/.gitea/workflows/test-trigger.yaml @@ -0,0 +1,11 @@ +name: Test Trigger + +on: + push: + branches: [main] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - run: echo "Hello World from Gitea Actions" From f444b8bd6e5299073fc951f33df3d4dbd85505da Mon Sep 17 00:00:00 2001 From: Gabriel Radureau Date: Mon, 6 Apr 2026 11:11:32 +0200 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=A7=AA=20test:=20add=20official=20Git?= =?UTF-8?q?ea=20Actions=20demo=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/test-trigger.yaml | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/test-trigger.yaml b/.gitea/workflows/test-trigger.yaml index 51c96ee..394c807 100644 --- a/.gitea/workflows/test-trigger.yaml +++ b/.gitea/workflows/test-trigger.yaml @@ -1,11 +1,19 @@ -name: Test Trigger - -on: - push: - branches: [main] +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +on: [push] jobs: - test: + Explore-Gitea-Actions: runs-on: ubuntu-latest steps: - - run: echo "Hello World from Gitea Actions" + - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" + - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." + - name: Check out repository code + uses: actions/checkout@v4 + - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." + - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ gitea.workspace }} + - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file From 205819e56833040debd624f7bbe4d407769ed5a3 Mon Sep 17 00:00:00 2001 From: Gabriel Radureau Date: Mon, 6 Apr 2026 13:09:44 +0200 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=97=91=EF=B8=8F=20chore:=20remove=20e?= =?UTF-8?q?xample=20test-trigger=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/test-trigger.yaml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .gitea/workflows/test-trigger.yaml diff --git a/.gitea/workflows/test-trigger.yaml b/.gitea/workflows/test-trigger.yaml deleted file mode 100644 index 394c807..0000000 --- a/.gitea/workflows/test-trigger.yaml +++ /dev/null @@ -1,19 +0,0 @@ -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." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" - - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." - - name: Check out repository code - uses: actions/checkout@v4 - - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - name: List files in the repository - run: | - ls ${{ gitea.workspace }} - - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file