Skip to content

Commit

Permalink
Merge pull request #6 from nicktu12/readme
Browse files Browse the repository at this point in the history
Readme
  • Loading branch information
nicktu12 authored Jan 7, 2019
2 parents 085da5b + 6884cd4 commit e002d84
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
# BeyBot

> A GitHub App built with [Probot](https://github.com/probot/probot) that A probot that worships Queen Beyoncé
> A GitHub App built with [Probot](https://github.com/probot/probot). All hail Queen Beyoncé.
## Setup

```sh
```
# Install dependencies
npm install
# Run the bot
npm start
```

This application accesses the [Giphy API](https://developers.giphy.com/) to generate GIFs. You will need to get an API key through Giphy's developer portal and add to the `.env` file of this project, with a key of `GIPHY` and value of the API key.

To add BeyBot to your Github, visit https://github.com/apps/beybot.

## Contributing

If you have suggestions for how BeyBot could be improved, or want to report a bug, open an issue! We'd love all and any contributions.
Expand All @@ -20,4 +24,4 @@ For more, check out the [Contributing Guide](CONTRIBUTING.md).

## License

[ISC](LICENSE) © 2018 Nick Teets <[email protected]>
[ISC](LICENSE) © 2019 [Nick Teets](https://github.com/nicktu12) <[email protected]>
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module.exports = app => {
const fetch = require('node-fetch');
app.log('I got a hot sauce in my bag, swag');

const triggerWords = ["Bey", "Beyonce", "Beyoncé", "Yonce", "Yoncé", "Mrs. Carter", "Mrs Carter", "JayZ", "Jay-Z", "Jay Z", "Sasha Fierce", "Destiny's Child", "Destinys Child", "Solange", "Knowles", "queen b", "qween"];
const triggerWords = ["Bey", "Beyonce", "Beyoncé", "Yonce", "Yoncé", "Mrs. Carter", "Mrs Carter", "JayZ", "Jay-Z", "Jay Z", "Sasha Fierce", "Destiny's Child", "Destinys Child", "Solange", "Knowles", "queen b", "qween", "carters", "Blue Ivy", "runi", "sir"];

const triggered = (webhookType, context) => {
const webhookTitle = context.payload[webhookType].title;
Expand Down

0 comments on commit e002d84

Please sign in to comment.