Skip to content

feat: profile 유저정보 api, 폴더 선택 팝업 수정 #113

feat: profile 유저정보 api, 폴더 선택 팝업 수정

feat: profile 유저정보 api, 폴더 선택 팝업 수정 #113

Workflow file for this run

name: Prevent Merge of Draft PRs
on:
pull_request:
types:
- synchronize
- opened
- labeled
jobs:
prevent_merge:
runs-on: ubuntu-latest
steps:
- name: Check if PR is a draft
run: |
if [ "${{ github.event.pull_request.draft }}" == "true" ]; then
echo "Draft PRs are not allowed to be merged."
exit 1
fi