From 7d6c90f86cfc15bea9e6b2c93f675ebcdd27aa6b Mon Sep 17 00:00:00 2001 From: TrueNine Date: Mon, 23 Feb 2026 09:49:10 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E4=B8=BA=E5=B7=A5=E4=BD=9C=E6=B5=81?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20pull=5Frequest=20=E4=BA=8B=E4=BB=B6?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加 opened, synchronize, reopened 和 closed 事件类型到 CI 和测试工作流,确保在这些 pull request 事件触发时运行工作流 --- .github/workflows/ci.yml | 1 + .github/workflows/test.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7fa39056..eddba9ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,6 +4,7 @@ on: pull_request: branches: - main + types: [opened, synchronize, reopened, closed] concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 977cd0d1..d07fa872 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,6 +4,7 @@ on: pull_request: branches: - main + types: [opened, synchronize, reopened, closed] concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number }}