Skip to content

Commit 973f127

Browse files
authored
Added Github action for Declarative label declaration, Standard Labels added for The Guild (ardatan#1931)
* Added instructions regarding ignore-engines and python dependency for the website * Added support for multi-search * Added support for indexing in Github actions workflow * Added labels declaratively * Rollback unwanted change * Fixed labels
1 parent 748875f commit 973f127

File tree

3 files changed

+79
-1
lines changed

3 files changed

+79
-1
lines changed

.github/labels.yml

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
- color: 1d76db
2+
description: ''
3+
name: automerge
4+
- color: d73a4a
5+
description: Something isn't working
6+
name: bug
7+
- color: 89c5e5
8+
description: ''
9+
name: cli
10+
- color: fbca04
11+
description: ''
12+
name: core
13+
- color: d4c5f9
14+
description: ''
15+
name: dependencies
16+
- color: 5319e7
17+
description: ''
18+
name: discussion
19+
- color: 0075ca
20+
description: Improvements or additions to documentation
21+
name: documentation
22+
- color: cfd3d7
23+
description: This issue or pull request already exists
24+
name: duplicate
25+
- color: a2eeef
26+
description: New feature or request
27+
name: enhancement
28+
- color: fef2c0
29+
description: ''
30+
name: feature
31+
- color: 7057ff
32+
description: Good for newcomers
33+
name: good first issue
34+
- color: '008672'
35+
description: Extra attention is needed
36+
name: help wanted
37+
- color: e4e669
38+
description: This doesn't seem right
39+
name: invalid
40+
- color: d93f0b
41+
description: ''
42+
name: needs reproduction
43+
- color: d876e3
44+
description: Further information is requested
45+
name: question
46+
- color: 8df48b
47+
description: ''
48+
name: source handler
49+
- color: f418ed
50+
description: ''
51+
name: transforms
52+
- color: fef2c0
53+
description: ''
54+
name: waiting for answer
55+
- color: 0052cc
56+
description: ''
57+
name: waiting for release
58+
- color: ffffff
59+
description: This will not be worked on
60+
name: wontfix

.github/workflows/github.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Sync labels
2+
on:
3+
push:
4+
branches:
5+
- master
6+
paths:
7+
- .github/labels.yml
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: micnncim/action-label-syncer@v1
14+
env:
15+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16+
with:
17+
manifest: .github/labels.yml
18+
prune: false

examples/federation-example/sandbox.config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
"node": "14",
55
"port": 4000
66
}
7-
}
7+
}

0 commit comments

Comments
 (0)