-
Notifications
You must be signed in to change notification settings - Fork 3
56 lines (48 loc) · 1.61 KB
/
autoIssue.yml
File metadata and controls
56 lines (48 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# 워크플로우 이름
name: 이슈 자동화
# 실행 조건: 이슈가 열렸을 때
on:
issues:
types: [ opened ]
# 실행할 작업
jobs:
automate-issue:
runs-on: ubuntu-latest
permissions:
issues: write
contents: read
steps:
# 이슈 제목에 따라 Label 자동 할당
- name: design 라벨 할당
if: contains(github.event.issue.title, 'design')
uses: actions-ecosystem/action-add-labels@v1
with:
labels: design
- name: feat 라벨 할당
if: contains(github.event.issue.title, 'feat')
uses: actions-ecosystem/action-add-labels@v1
with:
labels: feat
- name: fix 라벨 할당
if: contains(github.event.issue.title, 'fix')
uses: actions-ecosystem/action-add-labels@v1
with:
labels: fix
- name: refactor 라벨 할당
if: contains(github.event.issue.title, 'refactor')
uses: actions-ecosystem/action-add-labels@v1
with:
labels: refactor
- name: chore 라벨 할당
if: contains(github.event.issue.title, 'chore')
uses: actions-ecosystem/action-add-labels@v1
with:
labels: chore
# 프로젝트에 자동 추가 (프로젝트 생성 후 수정 필요)
- name : Github 프로젝트에 추가
uses: jinhokim98/project-flow-add-issue-to-project@v1
with:
github_token: ${{ secrets.PROJECT_ACCESS_TOKEN }}
project_owner: prgrms-web-devcourse-final-project
project_number: 154
target_column: 'Backlog'