We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b864b8 commit 4954bbcCopy full SHA for 4954bbc
gitlab/const.py
@@ -72,6 +72,21 @@ class DetailedMergeStatus(GitlabEnum):
72
POLICIES_DENIED: str = "policies_denied"
73
74
75
+# https://docs.gitlab.com/ee/api/pipelines.html
76
+class PipelineStatus(GitlabEnum):
77
+ CREATED: str = "created"
78
+ WAITING_FOR_RESOURCE: str = "waiting_for_resource"
79
+ PREPARING: str = "preparing"
80
+ PENDING: str = "pending"
81
+ RUNNING: str = "running"
82
+ SUCCESS: str = "success"
83
+ FAILED: str = "failed"
84
+ CANCELED: str = "canceled"
85
+ SKIPPED: str = "skipped"
86
+ MANUAL: str = "manual"
87
+ SCHEDULED: str = "scheduled"
88
+
89
90
DEFAULT_URL: str = "https://gitlab.com"
91
92
NO_ACCESS = AccessLevel.NO_ACCESS.value
0 commit comments