Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/brainexe/hassio-slack-bot

Hassio Slack bot addon
https://github.com/brainexe/hassio-slack-bot

hassio hassio-addons jenkins jira slack slackbot

Last synced: 14 days ago
JSON representation

Hassio Slack bot addon

Awesome Lists containing this project

README

        

# Home Assistant Slack Bot Addon
[Slack Bot documentation](http://github.com/innogames/slack-bot)

# Installation
Put config files into `/share/slack-bot/`. All .yaml files are loaded and merged.

# Example config
```
slack:
token: xoxb-121212121-232232-jdishd9D9hds

allowed_users:
- yourname

cron:
- schedule: 0 * * * *
channel: #dev
command:
- reply "hourly notification"
- trigger job Deploy master to staging

commands:
- name: deploy branch
trigger: "deploy branch (?P.*)"
commands:
- "reply I'll build {{ .branch }} for you"
- "trigger job BuildFrontendClient {{ .branch }}"
- "trigger job BuildMobileClient {{ .branch }}"
- "then reply done! :checkmark:"

# maaany other options/commands possible...
``