[Design] 보유와인 수정 UI 변경 #113
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: Create and Delete Issue Branch | |
| on: | |
| issues: | |
| types: [ assigned ] | |
| issue_comment: | |
| types: [ created ] | |
| pull_request: | |
| types: [ closed ] | |
| jobs: | |
| create_issue_branch_job: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Create Issue Branch | |
| uses: robvanderleek/create-issue-branch@main | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} | |
| delete_merged_branch: | |
| if: > | |
| github.event.pull_request.merged == true && | |
| github.event.pull_request.head.ref != 'dev' && | |
| github.event.pull_request.head.ref != 'main' && | |
| !startsWith(github.event.pull_request.head.ref, 'release/') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Delete Merged Branch | |
| uses: dawidd6/[email protected] | |
| with: | |
| github_token: ${{ secrets.PAT_TOKEN }} | |
| branches: ${{ github.event.pull_request.head.ref }} |