We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8b04c6 commit ce8a680Copy full SHA for ce8a680
src/samples/issueComment.json
@@ -11,6 +11,7 @@
11
"url": "https://linear.app/example/issue/SAMPLE-15",
12
"team": {
13
"id": "a582cb67-8f1b-4d8a-9d91-e9894dcf7fa6",
14
+ "key": "SAM",
15
"name": "Sample team"
16
}
17
},
src/triggers/commentIssueV2.ts
@@ -18,6 +18,7 @@ interface Comment {
18
url: string;
19
team: {
20
id: string;
21
+ key: string;
22
name: string;
23
};
24
@@ -107,6 +108,7 @@ const getCommentList = () => async (z: ZObject, bundle: Bundle) => {
107
108
url: true,
109
110
id: true,
111
+ key: true,
112
name: true,
113
114
0 commit comments