GitHub Actions workflow push 이벤트 비활성화

- push 트리거를 주석 처리하여 자동 실행 방지
- Pull Request 생성 시에만 자동 실행
- 수동 실행(workflow_dispatch)은 계속 가능

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
wonho 2025-10-29 17:57:26 +09:00
parent ab39c76585
commit 857fa5501c

View File

@ -1,14 +1,14 @@
name: Backend CI/CD Pipeline name: Backend CI/CD Pipeline
on: on:
push: # push:
branches: # branches:
- develop # - develop
- main # - main
paths: # paths:
- '*-service/**' # - '*-service/**'
- '.github/workflows/backend-cicd.yaml' # - '.github/workflows/backend-cicd.yaml'
- '.github/kustomize/**' # - '.github/kustomize/**'
pull_request: pull_request:
branches: branches:
- develop - develop