-
Notifications
You must be signed in to change notification settings - Fork 0
88 lines (76 loc) · 3.1 KB
/
IssueCloseAction.yml
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
name: 이슈 닫힘 시 라벨별로 파일 생성
on:
issues:
types: [closed]
permissions:
contents: write
jobs:
create_files_by_label:
runs-on: ubuntu-latest
steps:
- name: 레포지토리 체크아웃
uses: actions/checkout@v3
with:
fetch-depth: 0 # 전체 커밋 기록을 가져옵니다.
- name: 이슈 정보 가져오기 및 코드 추출
id: create_file
uses: actions/github-script@v6
with:
script: |
const fs = require('fs');
const issue = context.payload.issue;
const issueBody = issue.body || '';
const title = issue.title || 'untitled';
const labels = issue.labels.map(label => label.name);
console.log('이슈 제목:', title);
console.log('이슈 라벨:', labels);
console.log('이슈 본문:', issueBody);
if (labels.length === 0) {
console.log('이슈에 라벨이 없습니다. 작업을 종료합니다.');
process.exit(0);
}
// 코드 블록 추출 (언어 정보 포함)
const codeBlockRegex = /```(\w*)\s*([\s\S]*?)\s*```/gm;
let match;
while ((match = codeBlockRegex.exec(issueBody)) !== null) {
const language = match[1] || 'cpp'; // 언어 정보가 없으면 기본 cpp로 설정
let code = match[2].trim();
console.log('추출된 코드 블록:', code);
console.log('코드 언어:', language);
// 파일 확장자 결정
const fileExtension = {
'cpp': 'cpp',
'cs': 'cs',
'python': 'py',
'java': 'java',
'js': 'js',
'ts': 'ts',
'rb': 'rb',
'go': 'go',
'php': 'php',
'html': 'html',
'css': 'css',
}[language] || 'txt'; // 알 수 없는 언어의 경우 txt 확장자 사용
// 파일명과 폴더명에서 한글 포함하도록 수정
const sanitizedTitle = title.replace(/ /g, '_').replace(/[^\p{L}\p{N}_.-]/gu, '');
for (const label of labels) {
const sanitizedLabel = label.replace(/ /g, '_').replace(/[^\p{L}\p{N}_.-]/gu, '');
const folderPath = `${sanitizedLabel}`;
const filePath = `${folderPath}/${sanitizedTitle}.${fileExtension}`;
fs.mkdirSync(folderPath, { recursive: true });
fs.writeFileSync(filePath, code);
console.log(`파일 생성: ${filePath}`);
}
}
core.setOutput('issue_number', issue.number);
- name: 변경 사항 커밋 및 푸시
uses: EndBug/add-and-commit@v9
with:
message: "이슈 #${{ steps.create_file.outputs.issue_number }}에서 솔루션 추가"
add: "*/*"
author_name: GitHub Action
author_email: [email protected]
committer_name: GitHub Action
committer_email: [email protected]
pull_strategy: NO_REBASE # 푸시 전에 git pull을 수행합니다.
token: ${{ secrets.GITHUB_TOKEN }}