Skip to content

Commit

Permalink
Merge pull request #203 from cau-bootcamp/docs/#202
Browse files Browse the repository at this point in the history
[#202] docs: issue, PR template 수정
  • Loading branch information
sm-amoled authored Jan 27, 2024
2 parents 3566d31 + c8f5123 commit 10b4866
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 26 deletions.
13 changes: 4 additions & 9 deletions .github/ISSUE_TEMPLATE/task-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,17 @@ assignees: ''
---

# 작업 설명

작업 내역을 설명하고 어떤 이슈와 관련되어 있는지 명시합니다.
(ex. 로그인을 할 수 있는 인터페이스를 구현합니다.)

Related to # (issue) 를 사용하여 관련된 이슈를 명시할 수 있습니다.
Depends on # (issue) 를 사용하여 어떤 이슈가 해결되어야 작업을 진행할 수 있는지 명시할 수 있습니다.
Related to #
Depends on #

## 할 일

- [ ] 할 일 1 (ex. 로그인 인터페이스 구현)
- [ ] 할 일 2 (ex. 인증 도메인 구현)
- [ ]
- [ ]

## 예상 결과물

작업 결과물을 설명합니다. (ex. 스크린샷, gif, repository API 등)

## 참고 사항(선택)

작업을 진행시 참고할 사항이 있다면 적어주세요.
17 changes: 17 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
labels:
- name: 🐛 fix bug
patterns:
- 'bug'
- 'fix'
- '버그'
- name : 📝 docs
patterns:
- 'docs'
- '문서'
- 'documentation'
- name : ✨ new feature
patterns:
- 'feat'
- name : 🎨 design
patterns:
- 'design'
22 changes: 5 additions & 17 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,36 +1,24 @@
# 설명

작업 내역을 설명하고 어떤 이슈와 관련되어 있는지 명시합니다.
Fixes # (issue), Closes # (issue), Resolves # (issue) 등을 사용하여 이슈를 닫을 수 있습니다.

## 작업 종류

관련 내용에 체크해주세요.

- [ ] 버그 수정 (기존 기능에 영향을 미치지 **않는** 수정)
- [ ] 새로운 feature (기존 기능에 영향을 미치지 **않는** 기능 추가)
- [ ] Breaking change (기존 기능에 영향을 **주는** 수정)
- [ ] 문서 수정
- [ ] 기타 (please describe):
Fixes #
Closes #
Resolves #

# 작업 내역

작업 내역을 설명합니다.

- [ ] 작업 내역 1 (ex. 로그인 기능 추가)
- [ ] 작업 내역 2 (ex. 인증 기능 추가)
- 작업 내역 1 (ex. 로그인 기능 추가)
- 작업 내역 2 (ex. 인증 기능 추가)

## 작업 결과물

작업 결과물을 첨부합니다. (ex. 스크린샷, gif, 다른 사람이 사용할 수 있는 ㅇㅇAPI 등)

## 참고 사항(선택)

작업을 진행하면서 참고한 사항이나 참고할 사항이 있다면 적어주세요.
(ex. 나중에 수정해야 할 부분, 참고한 사이트, 참고한 코드 등)

# 체크 리스트

- [ ] 이해하기 어려운 부분은 주석을 달았습니다.
- [ ] 내 코드는 Lint를 통과했고 경고(warning)가 없습니다.
- [ ] 내 코드에 불필요한 print 등이 없습니다.
28 changes: 28 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Labeler

on:
pull_request:
types:
- opened
- synchronize

jobs:
labeler:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'

- name: Install dependencies
run: npm install

- name: Run labeler
run: npx github-label-sync --access-token=$GITHUB_TOKEN .github/labeler.yml
env:
GITHUB_TOKEN: ${{ secrets.ACTION_SECRET_TOKEN }}

0 comments on commit 10b4866

Please sign in to comment.