From fa7878393bfe32b9771aac8f3b3959eb1dd3eb5a Mon Sep 17 00:00:00 2001 From: Jeffery Date: Fri, 15 May 2026 05:11:43 +0000 Subject: [PATCH] docs: remove ci workflow --- .gitea/workflows/ci.yaml | 15 --------------- README.md | 3 --- 2 files changed, 18 deletions(-) delete mode 100644 .gitea/workflows/ci.yaml diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml deleted file mode 100644 index 04a51fe..0000000 --- a/.gitea/workflows/ci.yaml +++ /dev/null @@ -1,15 +0,0 @@ -name: CI -on: - pull_request: - push: - branches: - - master -jobs: - test: - name: 測試 - runs-on: ubuntu - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Run entrypoint tests - run: bash tests/entrypoint.sh diff --git a/README.md b/README.md index 204855d..90c4774 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,6 @@ jobs: - Action 定義: [`action.yaml`](action.yaml) - 執行腳本: [`entrypoint.sh`](entrypoint.sh) - 測試腳本: [`tests/entrypoint.sh`](tests/entrypoint.sh) -- CI workflow: [`.gitea/workflows/ci.yaml`](.gitea/workflows/ci.yaml) ## 測試 @@ -70,5 +69,3 @@ jobs: ```bash bash tests/entrypoint.sh ``` - -Gitea CI 也會在 push 與 pull request 時執行同一支腳本。