From 1c3153ed7e0d455fb7b4997a81e616f89588844b Mon Sep 17 00:00:00 2001 From: MisakaVan <2102315149@qq.com> Date: Sun, 25 May 2025 01:26:49 +0800 Subject: [PATCH 1/2] feat(gitignore): add backend logs to .gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 13e378c..310f5c7 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,6 @@ node_modules/ # backend secrets src/backend/.env src/backend/.env.test + +# backend logs +src/backend/logs/ From 4eb94e9f61628dbc529d9a34c9ea03a1953a734a Mon Sep 17 00:00:00 2001 From: MisakaVan <2102315149@qq.com> Date: Sun, 25 May 2025 01:27:04 +0800 Subject: [PATCH 2/2] feat(ci): add support for pull requests into test branches --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 764d133..455d640 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -7,6 +7,7 @@ on: pull_request: branches: - 'main' + - 'test*' jobs: Unittest: