From bf5750c634c9b3ea64c821c5022541885f2eaadc Mon Sep 17 00:00:00 2001 From: sudoooooo Date: Tue, 21 May 2024 19:42:43 +0800 Subject: [PATCH] feat: add branches --- .github/workflows/codecov.yml | 7 ++++++- .github/workflows/server-lint.yml | 7 ++++++- .github/workflows/web-lint.yml | 7 ++++++- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 5ea69f33..ec51f5e2 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -2,9 +2,14 @@ name: Test Coverage on: + push: + branches: + - main + - releases/** + paths: + - server/** pull_request: branches: - - feature/workflow - develop - main - releases/** diff --git a/.github/workflows/server-lint.yml b/.github/workflows/server-lint.yml index 1f988aca..8e1634a2 100644 --- a/.github/workflows/server-lint.yml +++ b/.github/workflows/server-lint.yml @@ -2,9 +2,14 @@ name: Server Lint on: + push: + branches: + - main + - releases/** + paths: + - server/** pull_request: branches: - - feature/workflow - develop - main - releases/** diff --git a/.github/workflows/web-lint.yml b/.github/workflows/web-lint.yml index a5236083..0425a06f 100644 --- a/.github/workflows/web-lint.yml +++ b/.github/workflows/web-lint.yml @@ -2,9 +2,14 @@ name: Web Lint on: + push: + branches: + - main + - releases/** + paths: + - web/** pull_request: branches: - - feature/workflow - develop - main - releases/**