├── .babelrc ├── .env.example ├── .flowconfig ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── PATENTS ├── Procfile ├── README.md ├── __mocks__ └── cookieJar.js ├── __tests__ ├── config-test.js ├── data │ ├── 1.diff │ ├── 17759.diff │ ├── 23.webhook │ ├── 3119.diff │ ├── 3229.diff │ ├── 3238.diff │ ├── 35fa5aa76233b3fbe541f3fa1756705900ee919c.diff │ ├── WebView.ios.js.blame │ └── pr229.diff ├── github-mention-test.js └── schedule-test.js ├── app.json ├── cache ├── https---github.com-facebook-react-native-blame-master-Libraries-Image-Image.ios.js ├── https---github.com-facebook-react-native-blame-master-Libraries-ReactIOS-NativeMethodsMixin.js ├── https---github.com-facebook-react-native-blame-master-Libraries-WebSocket-WebSocket.ios.js ├── https---github.com-facebook-react-native-blame-master-Libraries-WebSocket-WebSocketBase.js ├── https---github.com-facebook-react-native-blame-master-Libraries-WebSocket-__mocks__-event-target-shim.js ├── https---github.com-facebook-react-native-blame-master-Libraries-WebSocket-__tests__-Websocket-test.js ├── https---github.com-facebook-react-native-blame-master-RNTester-js-ImageExample.js ├── https---github.com-facebook-react-native-blame-master-website-server-extractDocs.js ├── https---github.com-facebook-react-native-pull-17759.diff ├── https---github.com-facebook-react-native-pull-3229.diff ├── https---github.com-facebook-react-native-pull-3238.diff ├── https---github.com-fbsamples-bot-testing-blame-master-hello-world.js └── https---github.com-fbsamples-bot-testing-pull-95.diff ├── config.js ├── config.json ├── cookieJar.js ├── docker-compose.yml ├── githubAuthCookies.js ├── interfaces └── package.json.js ├── mention-bot.js ├── message.js ├── package.json ├── run-mention-bot.js ├── run-server.js ├── schedule.js └── server.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/.babelrc -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/.env.example -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:4-onbuild 2 | EXPOSE 5000 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/PATENTS -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: npm start 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/cookieJar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/__mocks__/cookieJar.js -------------------------------------------------------------------------------- /__tests__/config-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/__tests__/config-test.js -------------------------------------------------------------------------------- /__tests__/data/1.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/__tests__/data/1.diff -------------------------------------------------------------------------------- /__tests__/data/17759.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/__tests__/data/17759.diff -------------------------------------------------------------------------------- /__tests__/data/23.webhook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/__tests__/data/23.webhook -------------------------------------------------------------------------------- /__tests__/data/3119.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/__tests__/data/3119.diff -------------------------------------------------------------------------------- /__tests__/data/3229.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/__tests__/data/3229.diff -------------------------------------------------------------------------------- /__tests__/data/3238.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/__tests__/data/3238.diff -------------------------------------------------------------------------------- /__tests__/data/35fa5aa76233b3fbe541f3fa1756705900ee919c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/__tests__/data/35fa5aa76233b3fbe541f3fa1756705900ee919c.diff -------------------------------------------------------------------------------- /__tests__/data/WebView.ios.js.blame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/__tests__/data/WebView.ios.js.blame -------------------------------------------------------------------------------- /__tests__/data/pr229.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/__tests__/data/pr229.diff -------------------------------------------------------------------------------- /__tests__/github-mention-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/__tests__/github-mention-test.js -------------------------------------------------------------------------------- /__tests__/schedule-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/__tests__/schedule-test.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/app.json -------------------------------------------------------------------------------- /cache/https---github.com-facebook-react-native-blame-master-Libraries-Image-Image.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/cache/https---github.com-facebook-react-native-blame-master-Libraries-Image-Image.ios.js -------------------------------------------------------------------------------- /cache/https---github.com-facebook-react-native-blame-master-Libraries-ReactIOS-NativeMethodsMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/cache/https---github.com-facebook-react-native-blame-master-Libraries-ReactIOS-NativeMethodsMixin.js -------------------------------------------------------------------------------- /cache/https---github.com-facebook-react-native-blame-master-Libraries-WebSocket-WebSocket.ios.js: -------------------------------------------------------------------------------- 1 | {"error":"Not Found"} -------------------------------------------------------------------------------- /cache/https---github.com-facebook-react-native-blame-master-Libraries-WebSocket-WebSocketBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/cache/https---github.com-facebook-react-native-blame-master-Libraries-WebSocket-WebSocketBase.js -------------------------------------------------------------------------------- /cache/https---github.com-facebook-react-native-blame-master-Libraries-WebSocket-__mocks__-event-target-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/cache/https---github.com-facebook-react-native-blame-master-Libraries-WebSocket-__mocks__-event-target-shim.js -------------------------------------------------------------------------------- /cache/https---github.com-facebook-react-native-blame-master-Libraries-WebSocket-__tests__-Websocket-test.js: -------------------------------------------------------------------------------- 1 | {"error":"Not Found"} -------------------------------------------------------------------------------- /cache/https---github.com-facebook-react-native-blame-master-RNTester-js-ImageExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/cache/https---github.com-facebook-react-native-blame-master-RNTester-js-ImageExample.js -------------------------------------------------------------------------------- /cache/https---github.com-facebook-react-native-blame-master-website-server-extractDocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/cache/https---github.com-facebook-react-native-blame-master-website-server-extractDocs.js -------------------------------------------------------------------------------- /cache/https---github.com-facebook-react-native-pull-17759.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/cache/https---github.com-facebook-react-native-pull-17759.diff -------------------------------------------------------------------------------- /cache/https---github.com-facebook-react-native-pull-3229.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/cache/https---github.com-facebook-react-native-pull-3229.diff -------------------------------------------------------------------------------- /cache/https---github.com-facebook-react-native-pull-3238.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/cache/https---github.com-facebook-react-native-pull-3238.diff -------------------------------------------------------------------------------- /cache/https---github.com-fbsamples-bot-testing-blame-master-hello-world.js: -------------------------------------------------------------------------------- 1 | {"error":"Not Found"} -------------------------------------------------------------------------------- /cache/https---github.com-fbsamples-bot-testing-pull-95.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/cache/https---github.com-fbsamples-bot-testing-pull-95.diff -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/config.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cookieJar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/cookieJar.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /githubAuthCookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/githubAuthCookies.js -------------------------------------------------------------------------------- /interfaces/package.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/interfaces/package.json.js -------------------------------------------------------------------------------- /mention-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/mention-bot.js -------------------------------------------------------------------------------- /message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/message.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/package.json -------------------------------------------------------------------------------- /run-mention-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/run-mention-bot.js -------------------------------------------------------------------------------- /run-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/run-server.js -------------------------------------------------------------------------------- /schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/schedule.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/mention-bot/HEAD/server.js --------------------------------------------------------------------------------