Skip to content

Commit 91993bd

Browse files
Add labeler
1 parent 0566ebc commit 91993bd

File tree

3 files changed

+109
-1
lines changed

3 files changed

+109
-1
lines changed

.github/labels.yml

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
---
2+
# Labels names are important as they are used by Release Drafter to decide
3+
# regarding where to record them in changelog or if to skip them.
4+
#
5+
# The repository labels will be automatically configured using this file and
6+
# the GitHub Action https://github.com/marketplace/actions/github-labeler.
7+
8+
- name: breaking
9+
description: Breaking changes
10+
color: bfd4f2
11+
12+
- name: bug
13+
description: Something isn't working
14+
color: d73a4a
15+
16+
- name: build
17+
description: Build system and dependencies
18+
color: bfdadc
19+
20+
- name: ci
21+
description: Continuous integration
22+
color: 4a97d6
23+
24+
- name: dependencies
25+
description: Pull requests that update a dependency file
26+
color: 0366d6
27+
28+
- name: documentation
29+
description: Improvements or additions to documentation
30+
color: 0075ca
31+
32+
- name: duplicate
33+
description: This issue or pull request already exists
34+
color: cfd3d7
35+
36+
- name: enhancement
37+
description: New feature or request
38+
color: a2eeef
39+
40+
- name: github_actions
41+
description: Pull requests that update Github_actions code
42+
color: "000000"
43+
44+
- name: good first issue
45+
description: Good for newcomers
46+
color: 7057ff
47+
48+
- name: help wanted
49+
description: Extra attention is needed
50+
color: 33aa3f
51+
52+
- name: invalid
53+
description: This doesn't seem right
54+
color: e4e669
55+
56+
- name: performance
57+
description: Performance
58+
color: "016175"
59+
60+
- name: python
61+
description: Pull requests that update Python code
62+
color: 2b67c6
63+
64+
- name: question
65+
description: Further information is requested
66+
color: d876e3
67+
68+
- name: refactoring
69+
description: Refactoring
70+
color: ef67c4
71+
72+
- name: removal
73+
description: Removals and deprecations
74+
color: 9ae7ea
75+
76+
- name: style
77+
description: Style
78+
color: c120e5
79+
80+
- name: testing
81+
description: Testing
82+
color: b1fc6f
83+
84+
- name: wontfix
85+
description: This will not be worked on
86+
color: ffffff
87+
88+
- name: stale
89+
description: This issue hasn't received enough love
90+
color: 922A20

.github/workflows/labeler.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Labeler
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
labeler:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Check out the repository
13+
uses: actions/checkout@v4
14+
15+
- name: Run Labeler
16+
uses: crazy-max/ghaction-github-labeler@v5
17+
with:
18+
skip-delete: true

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies = [
1616
]
1717

1818
[project.scripts]
19-
upgrade-dependencies = "upgrade_dependencies.main:main"
19+
up-deps = "upgrade_dependencies.main:main"
2020

2121
[dependency-groups]
2222
dev = [

0 commit comments

Comments
 (0)