You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .markdownlint.yaml
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -21,11 +21,12 @@ MD005: true
21
21
MD006: true
22
22
23
23
# MD007/ul-indent - Unordered list indentation
24
-
MD007:
24
+
# (This setting is temporarily disabled. The intention is to make its value 4, as doing this would allow the nesting of 3 bullet points and improved code block handling)
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ After completing the relevant 'Before you start' steps above:
58
58
foreman start
59
59
```
60
60
61
-
**Note:** After stopping the non-containerized server, simply run `foreman start` to re-start the server again.
61
+
**Note:** After stopping the non-containerized server, simply run `foreman start` to re-start the server again. If, however, the `foreman start` command fails to run successfully, try re-running the `bin/setup` command again to update any dependencies before running `foreman start` again.
All the possible types of subjects in an Audit Event
@@ -924,6 +950,7 @@ enum AuditSubjectType {
924
950
SCM_PIPELINE_SETTINGS
925
951
SCM_REPOSITORY_HOST
926
952
SCM_SERVICE
953
+
SECRET
927
954
SSO_PROVIDER
928
955
SUBSCRIPTION
929
956
SUITE
@@ -1104,6 +1131,11 @@ type Build implements Node {
1104
1131
Returns the last _n_ elements from the list.
1105
1132
"""
1106
1133
last: Int
1134
+
1135
+
"""
1136
+
Order the annotations
1137
+
"""
1138
+
order: AnnotationOrder = RECENTLY_CREATED
1107
1139
style: [AnnotationStyle!]
1108
1140
): AnnotationConnection
1109
1141
@@ -1275,6 +1307,13 @@ input BuildAnnotateInput {
1275
1307
"""
1276
1308
context: String = "default"
1277
1309
1310
+
"""
1311
+
Priority of the annotation. By default annotations have a priority of 3.
1312
+
Annotations with a priority of 10 will be shown first, and annotations with a
1313
+
priority of 1 will be shown last.
1314
+
"""
1315
+
priority: Int = 3
1316
+
1278
1317
"""
1279
1318
The style of the annotation. The default is `DEFAULT`
1280
1319
"""
@@ -1484,46 +1523,6 @@ type BuildRebuildPayload {
1484
1523
rebuild: Build!
1485
1524
}
1486
1525
1487
-
"""
1488
-
All the possible build retention periods, depending on your billing plan
1489
-
"""
1490
-
enumBuildRetentionPeriods {
1491
-
"""
1492
-
30 days
1493
-
"""
1494
-
DAYS_30
1495
-
1496
-
"""
1497
-
60 days
1498
-
"""
1499
-
DAYS_60
1500
-
1501
-
"""
1502
-
90 days
1503
-
"""
1504
-
DAYS_90
1505
-
1506
-
"""
1507
-
12 months
1508
-
"""
1509
-
MONTHS_12
1510
-
1511
-
"""
1512
-
18 months
1513
-
"""
1514
-
MONTHS_18
1515
-
1516
-
"""
1517
-
6 months
1518
-
"""
1519
-
MONTHS_6
1520
-
1521
-
"""
1522
-
2 years
1523
-
"""
1524
-
YEARS_2
1525
-
}
1526
-
1527
1526
interfaceBuildSource {
1528
1527
name: String!
1529
1528
}
@@ -6324,22 +6323,6 @@ type Pipeline implements Node {
6324
6323
"""
6325
6324
branchConfiguration: String
6326
6325
6327
-
"""
6328
-
Choose to keep builds or remove them after a set time period. Pipelines are
6329
-
scanned once a day for builds that can be removed according to these settings.
6330
-
"""
6331
-
buildRetentionEnabled: Boolean@deprecated(reason: "Build retention is now determined by your billing plan. This field is no longer used and always returns null.")
6332
-
6333
-
"""
6334
-
The minimum number of builds to keep in the pipeline regardless of how old the builds are.
6335
-
"""
6336
-
buildRetentionNumber: Int@deprecated(reason: "Build retention is now determined by your billing plan. This field is no longer used and always returns null.")
6337
-
6338
-
"""
6339
-
How long is a build kept before it is automatically removed.
6340
-
"""
6341
-
buildRetentionPeriod: BuildRetentionPeriods@deprecated(reason: "Build retention is now determined by your billing plan. This field is no longer used and always returns null.")
6342
-
6343
6326
"""
6344
6327
Returns the builds for this pipeline
6345
6328
"""
@@ -7759,6 +7742,16 @@ type Query {
7759
7742
uuid: ID!
7760
7743
): PipelineTemplate
7761
7744
7745
+
"""
7746
+
Find a secret via its uuid. This does not contain the value of the secret or encrypted material.
7747
+
"""
7748
+
secret(
7749
+
"""
7750
+
The UUID for the secret i.e. `0bd5ea7c-89b3-4f40-8ca3-ffac805771eb`
7751
+
"""
7752
+
uuid: ID!
7753
+
): Secret
7754
+
7762
7755
"""
7763
7756
Find an sso provider either using it's slug, or UUID
7764
7757
"""
@@ -8943,6 +8936,52 @@ type SSOProviderUpdatePayload {
8943
8936
ssoProvider: SSOProvider!
8944
8937
}
8945
8938
8939
+
"""
8940
+
A secret hosted by Buildkite. This does not contain the secret value or encrypted material.
0 commit comments