-
Notifications
You must be signed in to change notification settings - Fork 126
121 lines (105 loc) ยท 3.67 KB
/
integration.yaml
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
name: ๐ Integration
on:
pull_request:
jobs:
linelint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get list of changed files
id: changed-files
run: |
changed_files=$(git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.sha }} | jq -R -s -c 'split("\n")[:-1]')
echo "changed_files: $changed_files"
echo "files=$changed_files" >> $GITHUB_OUTPUT
- name: Check for missing newlines
id: newline-check
run: |
files_without_newline=()
while IFS= read -r file; do
if [ -f "$file" ]; then
last_char=$(tail -c 1 "$file")
if [ -n "$last_char" ]; then
files_without_newline+=("$file")
fi
fi
done < <(echo '${{ steps.changed-files.outputs.files }}' | jq -r '.[]')
if [ ${#files_without_newline[@]} -gt 0 ]; then
json_files=$(printf '%s\n' "${files_without_newline[@]}" | jq -R -s -c 'split("\n")[:-1]')
echo "files_without_newline: $json_files"
echo "files=$json_files" >> $GITHUB_OUTPUT
exit 1
fi
- name: Set Job Summary
if: failure()
run: |
if [ -n '${{ steps.newline-check.outputs.files }}' ]; then
echo "๐ ๏ธ ์๋ ํ์ผ๋ค์ ๊ณต๋ฐฑ ์ค์ ์ถ๊ฐํด์ฃผ์ธ์:" >> $GITHUB_STEP_SUMMARY
echo '${{ steps.newline-check.outputs.files }}' |
jq -r '.[]' |
sed 's/^/- /' >> $GITHUB_STEP_SUMMARY
fi
label-lang:
runs-on: ubuntu-latest
continue-on-error: true
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: echo '{}' > package.json
- run: npm install @octokit/rest node-fetch
- name: Detect languages and add labels
env:
GITHUB_TOKEN: ${{ github.token }}
PR_NUM: ${{ github.event.number }}
run: |
node --input-type=module -e "
import { Octokit } from '@octokit/rest';
import path from 'path';
import fetch from 'node-fetch';
const octokit = new Octokit({
auth: process.env.GITHUB_TOKEN,
request: { fetch }
});
const extensionsToLanguages = {
js: 'js',
ts: 'ts',
py: 'py',
java: 'java',
kt: 'kotlin',
cpp: 'c++',
go: 'go',
exs: 'elixir',
swift: 'swift'
// ํ์ํ ๋ค๋ฅธ ํ์ฅ์์ ์ธ์ด ๋งคํ ์ถ๊ฐ
};
async function run() {
const { data: files } = await octokit.pulls.listFiles({
owner: process.env.GITHUB_REPOSITORY.split('/')[0],
repo: process.env.GITHUB_REPOSITORY.split('/')[1],
pull_number: process.env.PR_NUM,
});
const languages = new Set();
files.forEach(file => {
const ext = path.extname(file.filename).slice(1);
if (extensionsToLanguages[ext]) {
languages.add(extensionsToLanguages[ext]);
}
});
if (languages.size > 0) {
await octokit.issues.addLabels({
owner: process.env.GITHUB_REPOSITORY.split('/')[0],
repo: process.env.GITHUB_REPOSITORY.split('/')[1],
issue_number: process.env.PR_NUM,
labels: Array.from(languages),
});
}
}
run();
"