-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmanifest.ts
More file actions
30 lines (28 loc) · 853 Bytes
/
manifest.ts
File metadata and controls
30 lines (28 loc) · 853 Bytes
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
import { Manifest } from "deno-slack-sdk/mod.ts";
import PingWorkflow from "./workflows/ping.ts";
import { GitHubIssuesFunctionDefinition } from "./functions/github_issues.ts";
import { IssuesWorkflow } from "./workflows/issues.ts";
import "std/dotenv/load.ts";
/**
* The app manifest contains the app's configuration. This
* file defines attributes like app name and description.
* https://api.slack.com/future/manifest
*/
export default Manifest({
name: "devICT Keeper",
displayName: "keeper",
description: "A slack bot for devICT",
icon: "assets/devict_logo_2000x2000.png",
functions: [GitHubIssuesFunctionDefinition],
workflows: [PingWorkflow, IssuesWorkflow],
events: [],
outgoingDomains: [
"api.github.com",
],
botScopes: [
"commands",
"chat:write",
"chat:write.public",
"app_mentions:read",
],
});