-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (54 loc) · 1.65 KB
/
sync-labels.yml
File metadata and controls
60 lines (54 loc) · 1.65 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
57
58
59
60
name: Sync Labels
on:
push:
branches:
- main
paths:
- ".github/labels.json"
- ".github/workflows/sync-labels.yml"
workflow_dispatch:
permissions:
contents: read
issues: write
jobs:
sync:
name: Sync Repository Labels
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Sync labels from config
uses: actions/github-script@v7
with:
script: |
const fs = require("fs");
const labels = JSON.parse(fs.readFileSync(".github/labels.json", "utf8"));
const { owner, repo } = context.repo;
const existing = await github.paginate(github.rest.issues.listLabelsForRepo, {
owner,
repo,
per_page: 100,
});
const existingMap = new Map(existing.map((label) => [label.name, label]));
for (const label of labels) {
if (existingMap.has(label.name)) {
await github.rest.issues.updateLabel({
owner,
repo,
name: label.name,
new_name: label.name,
color: label.color,
description: label.description,
});
core.info(`Updated label: ${label.name}`);
continue;
}
await github.rest.issues.createLabel({
owner,
repo,
name: label.name,
color: label.color,
description: label.description,
});
core.info(`Created label: ${label.name}`);
}