-
Notifications
You must be signed in to change notification settings - Fork 8
62 lines (56 loc) · 1.73 KB
/
Copy pathsync-labels.yml
File metadata and controls
62 lines (56 loc) · 1.73 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
61
62
name: Sync GitHub labels
on:
workflow_dispatch:
push:
branches:
- main
paths:
- .github/labels.json
- .github/workflows/sync-labels.yml
permissions:
issues: write
contents: read
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Create or update labels from labels.json
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;
for (const { name, color, description } of labels) {
const colorHex = String(color).replace(/^#/, '');
const desc = description || '';
try {
await github.rest.issues.getLabel({ owner, repo, name });
await github.rest.issues.updateLabel({
owner,
repo,
name,
color: colorHex,
description: desc,
});
core.info(`Updated: ${name} (#${colorHex})`);
} catch (error) {
if (error.status === 404) {
await github.rest.issues.createLabel({
owner,
repo,
name,
color: colorHex,
description: desc,
});
core.info(`Created: ${name} (#${colorHex})`);
} else {
core.setFailed(`Failed on ${name}: ${error.message}`);
throw error;
}
}
}