From 4f116fdcc4ec5131729e8845f65d754ea3018814 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 dec0c544..17cabfe3 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 f0963789..f74d938e 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/**