[fix] : 목표조회 api 데이터 수정 및 임시조회 기능 추가 #5
Workflow file for this run
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 | ||