-
Notifications
You must be signed in to change notification settings - Fork 720
37 lines (33 loc) · 1.05 KB
/
label.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
name: Add Labels
on:
pull_request_target:
types: [opened, reopened]
jobs:
add_labels:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7
name: Add labels
with:
script: |
function doAddLabels(labels) {
console.log("Adding labels", labels);
return github.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: labels,
});
}
async function run() {
const { title } = context.payload.pull_request;
if (title.startsWith("Update TiDB Dashboard to")) {
await doAddLabels(["component/visualization", "require-LGT1"]);
return;
}
console.log("Not matching any label rules, skip");
}
run().catch(e => {
// Do not fail on errors
console.error("Errors: ", e.stack);
})