fix: 목표 생성 라우트 변경 및 경로 가로채기 적용 #639
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Manual Trigger Workflow | ||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| branch: | ||
| description: '배포할 브랜치 선택' | ||
| required: true | ||
| default: 'main' | ||
| type: choice | ||
| options: | ||
| - main | ||
| - develop | ||
| jobs: | ||
| deploy: | ||
| uses: .github/workflows/main.yml | ||
| with: | ||
| branch: ${{ github.event.inputs.branch }} | ||
| secrets: inherit | ||