Skip to content

feat: 컨텐츠 대표이미지 10장 추가 및 등록 로직 수정 #130

feat: 컨텐츠 대표이미지 10장 추가 및 등록 로직 수정

feat: 컨텐츠 대표이미지 10장 추가 및 등록 로직 수정 #130

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