From 6c46105cfe7e3a302a556d57582c936965764049 Mon Sep 17 00:00:00 2001 From: HyunseokLEE Date: Tue, 23 Sep 2025 03:27:07 +0900 Subject: [PATCH] =?UTF-8?q?CDP-28=20chore=E2=9A=99=EF=B8=8F:=20develop=20P?= =?UTF-8?q?R=20CI=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/frontend-ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/frontend-ci.yml b/.github/workflows/frontend-ci.yml index bef853a..97bf9fc 100644 --- a/.github/workflows/frontend-ci.yml +++ b/.github/workflows/frontend-ci.yml @@ -1,8 +1,12 @@ name: Frontend-CI on: + # 배포 게이트: main으로 가는 PR에서만 CI 실행 pull_request: - branches: [main, develop] + branches: [main] + types: [opened, reopened, synchronize, ready_for_review] + + # 빠른 피드백: 기능/작업 브랜치에 push될 때 CI 실행 push: branches: - "Feature/*" @@ -12,6 +16,9 @@ on: - "Test/*" - "Refactor/*" + # (선택) Actions 탭에서 수동 실행 버튼 + workflow_dispatch: {} + concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true