-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
48 lines (35 loc) · 1.12 KB
/
index.js
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
const core = require('@actions/core')
const github = require('@actions/github')
const helper = require('./libs/helper.js')
async function main() {
try {
const labelsStr = core.getInput('labels')
const keywordsStr = core.getInput('keywords')
const blockingLabels = JSON.parse(labelsStr)
const blockingKeywords = JSON.parse(keywordsStr)
const {payload: {pull_request: pr}} = github.context
const title = pr.title
const labels = pr.labels.map(x => x.name)
const effected = {
labels: [],
keywords: [],
}
blockingLabels.forEach(bl => {
if (labels.includes(bl)) effected.labels.push(bl)
})
blockingKeywords.forEach(bk => {
if (title.includes(bk)) effected.keywords.push(bk)
})
let summarys = []
if (effected.labels.length) {
summarys.push(`Blocking labels: ${effected.labels.join(', ')}`)
}
if (effected.keywords.length) {
summarys.push(`Blocking keywords in title: ${effected.keywords.join(', ')}`)
}
if (summarys.length) core.setFailed(summarys.join(" "))
} catch (error) {
core.setFailed(error.message)
}
}
main()