Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/brainexe/hassio-slack-bot
- Owner: brainexe
- License: mit
- Created: 2019-07-19T20:16:46.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-10T21:16:50.000Z (almost 4 years ago)
- Last Synced: 2024-11-05T07:41:44.594Z (2 months ago)
- Topics: hassio, hassio-addons, jenkins, jira, slack, slackbot
- Language: Dockerfile
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
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-jdishd9D9hdsallowed_users:
- yournamecron:
- 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...
``