Skip to content

Commit 66a6326

Browse files
committed
Merge #485: ci: improve labels workflow
62c6c10 ci: improve labels workflow (Cameron Garnham) Pull request description: ACKs for top commit: da2ce7: ACK 62c6c10 Tree-SHA512: 92aae97062ae8eff338f48a9839813179469cd7917bebeca5404c0020e7fb3a39934f6d79c12a982e5b7c705b6d596e83dab9f27dcceb9085de0bdcde357fe01
2 parents 69f3327 + 62c6c10 commit 66a6326

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

.github/dependabot.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,15 @@ updates:
55
schedule:
66
interval: daily
77
target-branch: "develop"
8+
labels:
9+
- "Continuous Integration"
10+
- "Dependencies"
811

912
- package-ecosystem: cargo
1013
directory: /
1114
schedule:
1215
interval: daily
1316
target-branch: "develop"
17+
labels:
18+
- "Build | Project System"
19+
- "Dependencies"

.github/labels.json

+1-7
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"name": "Build | Project System",
4040
"color": "99AAAA",
4141
"description": "Compiling and Packaging",
42-
"aliases": []
42+
"aliases": ["Rust"]
4343
},
4444
{
4545
"name": "Cannot Reproduce",
@@ -215,12 +215,6 @@
215215
"description": "This Looks Good",
216216
"aliases": []
217217
},
218-
{
219-
"name": "Rust",
220-
"color": "000000",
221-
"description": "Pull requests that update Rust code",
222-
"aliases": []
223-
},
224218
{
225219
"name": "Security",
226220
"color": "650606",

.github/workflows/labels.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Manage Labels
1+
name: Labels
22
on:
33
workflow_dispatch:
44
push:
@@ -9,14 +9,16 @@ on:
99

1010
jobs:
1111
export:
12+
name: Export Existing Labels
1213
runs-on: ubuntu-latest
1314

1415
steps:
1516
- id: backup
16-
name: Export Labels to Workflow Artifacts
17+
name: Export to Workflow Artifact
1718
uses: EndBug/export-label-config@v1
1819

1920
sync:
21+
name: Synchronize Labels from Repo
2022
needs: export
2123
runs-on: ubuntu-latest
2224

0 commit comments

Comments
 (0)