forked from aws-powertools/powertools-lambda-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.js
More file actions
54 lines (43 loc) · 1.37 KB
/
constants.js
File metadata and controls
54 lines (43 loc) · 1.37 KB
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
module.exports = Object.freeze({
/** @type {string} */
// Values: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request
"PR_ACTION": process.env.PR_ACTION?.replace(/"/g, '') || "",
/** @type {string} */
"PR_AUTHOR": process.env.PR_AUTHOR?.replace(/"/g, '') || "",
/** @type {string} */
"PR_BODY": process.env.PR_BODY || "",
/** @type {string} */
"PR_TITLE": process.env.PR_TITLE || "",
/** @type {number} */
"PR_NUMBER": process.env.PR_NUMBER || 0,
/** @type {string} */
"PR_IS_MERGED": process.env.PR_IS_MERGED || "false",
/** @type {string} */
"LABEL_BLOCK": "do-not-merge",
/** @type {string} */
"LABEL_BLOCK_REASON": "need-issue",
/** @type {string} */
"LABEL_PENDING_RELEASE": "pending-release",
/** @type {string} */
"HANDLE_MAINTAINERS_TEAM": "@awslabs/aws-lambda-powertools-python",
/** @type {string[]} */
"IGNORE_AUTHORS": ["dependabot[bot]", "markdownify[bot]"],
/** @type {string[]} */
"AREAS": [
"tracer",
"metrics",
"utilities",
"logger",
"event_handlers",
"middleware_factory",
"idempotency",
"event_sources",
"feature_flags",
"parameters",
"batch",
"parser",
"validator",
"jmespath_util",
"lambda-layers",
],
});