From bb094546dbeebfd2a721ff4604212846cc364c57 Mon Sep 17 00:00:00 2001 From: Ahsan Date: Tue, 14 Apr 2026 12:57:30 +0600 Subject: [PATCH 1/3] test commit 2 --- b.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 b.py diff --git a/b.py b/b.py new file mode 100644 index 0000000..e69de29 -- 2.49.1 From 29a1171d6e75cba99af43c4924a870bca90502a0 Mon Sep 17 00:00:00 2001 From: Ahsan Date: Tue, 14 Apr 2026 13:07:02 +0600 Subject: [PATCH 2/3] add sample actions workflow --- .gitea/workflows/sample.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitea/workflows/sample.yml diff --git a/.gitea/workflows/sample.yml b/.gitea/workflows/sample.yml new file mode 100644 index 0000000..6272347 --- /dev/null +++ b/.gitea/workflows/sample.yml @@ -0,0 +1,12 @@ +name: Test Gitea Actions +on: [push] +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: List files + run: ls -la + - name: Done + run: echo "Gitea Actions working on 1.25.5!" -- 2.49.1 From c7d2bd048b84572f582bf303a98e5735924402ef Mon Sep 17 00:00:00 2001 From: Ahsan Date: Tue, 14 Apr 2026 13:09:50 +0600 Subject: [PATCH 3/3] fix workflow - remove checkout action --- .gitea/workflows/sample.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitea/workflows/sample.yml b/.gitea/workflows/sample.yml index 6272347..9ce4dcd 100644 --- a/.gitea/workflows/sample.yml +++ b/.gitea/workflows/sample.yml @@ -4,8 +4,6 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v3 - name: List files run: ls -la - name: Done -- 2.49.1