gitlab_support_readiness 1.3.3 → 1.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/support_readiness/ticket_processor/cmp_creation.rb +48 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a444edeee63f40c6f3c1cf117329892dbc79bf8314402d8e733325389d50cbb2
|
4
|
+
data.tar.gz: b14192232c3e1b6913be49db749997b53a39a36df2f681e77b16ce94316fca86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da392ba62213a3dd0f7fd4886a3c3f4639adb0587ed897d55b817d1bc6883de9e055eada3494e269648dfebb37bcba412b15e4dcad381bd60a7b13fbac1223fd
|
7
|
+
data.tar.gz: 39f52aed0686af1b55bb73084ecea76cbfd4c7a9508e16340ff2c6d8187315297b19b1cfde57fe3121e6a3be4e18cc903d5d030d617ac7143a2b4d52c9dead5e
|
@@ -205,7 +205,54 @@ module Readiness
|
|
205
205
|
<<~STRING
|
206
206
|
# Zendesk Global Organization Contact Syncing
|
207
207
|
|
208
|
-
|
208
|
+
## NOTE
|
209
|
+
|
210
|
+
This is a beta feature that is very likely to be deprecated in the future. Should it be deprecated, any existing contact management projects would be deactivated. If you are over 30 support contacts at that time, you would be unable to add more until the contacts were removed to get back to the 30 maximum limit.
|
211
|
+
|
212
|
+
## How it works
|
213
|
+
|
214
|
+
You edit the contacts.yaml file. The changes trigger a pipeline on our Ops instance. This syncs the changes over to the global support portal. Your organization's contacts then match the contacts.yaml file exactly.
|
215
|
+
|
216
|
+
## Adding a contact
|
217
|
+
|
218
|
+
To add a contact, add a new line at the bottom of the contact.yaml file in the following format:
|
219
|
+
|
220
|
+
```
|
221
|
+
- name: NAME_OF_CONTACT
|
222
|
+
email: EMAIL_OF_CONTACT
|
223
|
+
```
|
224
|
+
|
225
|
+
Replacing `NAME_OF_CONTACT` with the contact's name and `EMAIL_OF_CONTACT` with the email of the contact.
|
226
|
+
|
227
|
+
Commit the changes and the sync will take care of the rest!
|
228
|
+
|
229
|
+
## Removing a contact
|
230
|
+
|
231
|
+
To remove a contact, just delete the name and email rows from the file of the contact.
|
232
|
+
|
233
|
+
Commit the changes and the sync will take care of the rest!
|
234
|
+
|
235
|
+
## Maximum number of contacts
|
236
|
+
|
237
|
+
This will only manage the first 50 contacts in a file. Any beyond that are simply ignored by the pipelines.
|
238
|
+
|
239
|
+
## How can I change who can see this project?
|
240
|
+
|
241
|
+
To get others added or removed, please file a ticket with Support Operations using:
|
242
|
+
|
243
|
+
https://support.gitlab.com/hc/en-us/requests/new?ticket_form_id=360001801419
|
244
|
+
|
245
|
+
## Can I use this for important files for the support team?
|
246
|
+
|
247
|
+
As the access to this project is very restricted, the greater GitLab teams cannot access this. As such, you should not use this project for the purpose of storing files meant to seen by others.
|
248
|
+
|
249
|
+
## How do I know if it worked?
|
250
|
+
|
251
|
+
Upon success or failure, a badge is added to the project. This can be used to determine the status of the sync.
|
252
|
+
|
253
|
+
If you see the badge say the sync has failed, please open a ticket with ops:
|
254
|
+
|
255
|
+
https://support.gitlab.com/hc/en-us/requests/new?ticket_form_id=360001801419
|
209
256
|
|
210
257
|
## What should I do if it didn’t work?
|
211
258
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitlab_support_readiness
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jason Colyer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|