summaryrefslogtreecommitdiff
path: root/docs/gl_objects/labels.py
blob: a63e295f599abfde65cde77a926b0ae23ca81148 (plain)
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
# list
labels = project.labels.list()
# end list

# get
label = project.labels.get(label_name)
# end get

# create
label = project.labels.create({'name': 'foo', 'color': '#8899aa'})
# end create

# update
# change the name of the label:
label.new_name = 'bar'
label.save()
# change its color:
label.color = '#112233'
label.save()
# end update

# delete
project.labels.delete(label_id)
# or
label.delete()
# end delete

# use
# Labels are defined as lists in issues and merge requests. The labels must
# exist.
issue = p.issues.create({'title': 'issue title',
                         'description': 'issue description',
                         'labels': ['foo']})
issue.labels.append('bar')
issue.save()
# end use