blob: f939e5ff33887bd731e33a4ef04b15e60bd10a01 (
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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
#########
Templates
#########
You can request templates for different type of files:
* License files
* .gitignore files
* GitLab CI configuration files
* Dockerfiles
License templates
=================
Reference
---------
* v4 API:
+ :class:`gitlab.v4.objects.License`
+ :class:`gitlab.v4.objects.LicenseManager`
+ :attr:`gitlab.Gitlab.licenses`
* GitLab API: https://docs.gitlab.com/ce/api/templates/licenses.html
Examples
--------
List known license templates::
licenses = gl.licenses.list()
Generate a license content for a project::
license = gl.licenses.get('apache-2.0', project='foobar', fullname='John Doe')
print(license.content)
.gitignore templates
====================
Reference
---------
* v4 API:
+ :class:`gitlab.v4.objects.Gitignore`
+ :class:`gitlab.v4.objects.GitignoreManager`
+ :attr:`gitlab.Gitlab.gitignores`
* GitLab API: https://docs.gitlab.com/ce/api/templates/gitignores.html
Examples
--------
List known gitignore templates::
gitignores = gl.gitignores.list()
Get a gitignore template::
gitignore = gl.gitignores.get('Python')
print(gitignore.content)
GitLab CI templates
===================
Reference
---------
* v4 API:
+ :class:`gitlab.v4.objects.Gitlabciyml`
+ :class:`gitlab.v4.objects.GitlabciymlManager`
+ :attr:`gitlab.Gitlab.gitlabciymls`
* GitLab API: https://docs.gitlab.com/ce/api/templates/gitlab_ci_ymls.html
Examples
--------
List known GitLab CI templates::
gitlabciymls = gl.gitlabciymls.list()
Get a GitLab CI template::
gitlabciyml = gl.gitlabciymls.get('Pelican')
print(gitlabciyml.content)
Dockerfile templates
====================
Reference
---------
* v4 API:
+ :class:`gitlab.v4.objects.Dockerfile`
+ :class:`gitlab.v4.objects.DockerfileManager`
+ :attr:`gitlab.Gitlab.gitlabciymls`
* GitLab API: Not documented.
Examples
--------
List known Dockerfile templates::
dockerfiles = gl.dockerfiles.list()
Get a Dockerfile template::
dockerfile = gl.dockerfiles.get('Python')
print(dockerfile.content)
|