This repository has been archived on 2023-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
gitops-tbrnt/botkube
Tobias Brunner 4b52b02ce3
continuous-integration/drone/push Build is passing Details
ignore monitoring ns
2020-12-13 21:08:55 +01:00
..
README.md scale botkube up again 2020-12-13 21:01:45 +01:00
configmap.yaml ignore monitoring ns 2020-12-13 21:08:55 +01:00
deployment.yaml scale botkube up again 2020-12-13 21:01:45 +01:00
rbac.yaml install botkube 2020-12-13 11:23:18 +01:00
secret.yaml update botkube webhook url 2020-12-13 20:56:32 +01:00

README.md

BotKube

Rocket.Chat Script

class Script {
    process_incoming_request({
        request
    }) {
        console.log(request.content);

        return {
            content: {
                username: "BotKube",
                text: request.content.summary
            }
        };

        return {
            error: {
                success: false
            }
        };
    }
}