https://github.com/psilospore/spores-slackbot
A simple slackbot that allows JIRA stats to be submitted and posts a formatted message to a slack channel
https://github.com/psilospore/spores-slackbot
express javascript slack slackbot
Last synced: about 2 months ago
JSON representation
A simple slackbot that allows JIRA stats to be submitted and posts a formatted message to a slack channel
- Host: GitHub
- URL: https://github.com/psilospore/spores-slackbot
- Owner: psilospore
- Created: 2017-11-16T00:13:08.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-16T02:47:30.000Z (over 8 years ago)
- Last Synced: 2026-03-29T17:05:29.542Z (3 months ago)
- Topics: express, javascript, slack, slackbot
- Language: JavaScript
- Homepage:
- Size: 4.68 MB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# spores-slackbot
A slackbot server that takes a response in the following format and posts a formatted message on a channel of you choice
```
{
"Name": "Sprint Name",
"Start": "1510709340000",
"End": "1511918940000",
"CompletedPoints": 1.0,
"TotalPoints": 36.0,
"StoriesCount": 7,
"BugsCount": 6
}
```
You do need a config file in the following format:
```
{
"SLACK_TOKEN": "SUPER-SECRET-TOKEN",
"channel": "some-channel"
}
```