From 3a1bf950992ec8e6972c5b8ce0455d7ffc224477 Mon Sep 17 00:00:00 2001 From: Jon Date: Wed, 2 Jul 2025 00:48:31 +0930 Subject: [PATCH] chore: add test to confirm only gitea workflows run on gitea if github dir also exists ref: #4 #1 --- .gitea/.gitkeep | 0 .gitea/workflows/pull_request.yaml | 17 +++++++++++++++++ .github/workflows/pull_request.yaml | 17 +++++++++++++++++ 3 files changed, 34 insertions(+) create mode 100644 .gitea/.gitkeep create mode 100644 .gitea/workflows/pull_request.yaml create mode 100644 .github/workflows/pull_request.yaml diff --git a/.gitea/.gitkeep b/.gitea/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml new file mode 100644 index 0000000..400eccf --- /dev/null +++ b/.gitea/workflows/pull_request.yaml @@ -0,0 +1,17 @@ +--- + +name: Pull Requests + + +on: + pull_request: {} + +jobs: + + ci-test: + runs-on: ubuntu-latest + steps: + + - name: Test + run: | + echo "gitea"; diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml new file mode 100644 index 0000000..c34b802 --- /dev/null +++ b/.github/workflows/pull_request.yaml @@ -0,0 +1,17 @@ +--- + +name: Pull Requests + + +on: + pull_request: {} + +jobs: + + ci-test: + runs-on: ubuntu-latest + steps: + + - name: Test + run: | + echo "github";