-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathconstant.js
33 lines (32 loc) · 1.13 KB
/
constant.js
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
let CONSTENT_VALUES = {
GLOBALS: {
LABELS: {
STALE: "stale",
AWAITINGRES: "stat:awaiting response",
BUG: 'type:bug',
BUG_INSTALL: 'type:build/install',
TYPE_SUPPORT: 'type:support',
TYPE_OTHER: 'type:others',
TYPE_DOCS_BUG: 'type:docs-bug',
TYPE_PERFORMANCE: 'type:performance'
},
STATE: {
CLOSED: "closed"
},
TENSORFLOW_CORE_REPO: 'https://github.com/tensorflow/tensorflow/pull',
PR_TRIGGER_REPO: 'testRep,keras'
},
MODULE: {
CSAT: {
YES:'Yes',
NO:'No',
BASE_URL: 'https://docs.google.com/forms/d/e/1FAIpQLSfaP12TRhd9xSxjXZjcZFNXPG' +
'k4kc1-qMdv3gc6bEP90vY1ew/viewform?',
MEDIA_PIPE_BASE_URL: 'https://docs.google.com/forms/d/e/1FAIpQLScOLT8zeBHummIZFnfr9wqvxYzWD1DAypyvNia5WVIWtFANYg/viewform?',
SATISFACTION_PARAM: 'entry.85265664=',
ISSUEID_PRAM: '&entry.2137816233=',
MSG: 'Are you satisfied with the resolution of your issue?',
}
}
}
module.exports = CONSTENT_VALUES