UNPKG

snowball-slackbot

Version:

Send reminder messages to Slack users about GitHub PRs that require review, changes, or are approved.

10 lines (8 loc) 182 B
const fs = require('fs'); // Get user mapping configs const self = module.exports = { readConfig: (path) => { var data = JSON.parse(fs.readFileSync(path)); return data; } }