Skip to content

Commit ef90ce0

Browse files
committed
deployed on heroku
Signed-off-by: Apoorvaa Gupta <[email protected]>
1 parent 45c2c3c commit ef90ce0

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.env
22
node_modules
33
*.pem
4-
.DS_Store/
4+
.DS_Store
55
.idea
66
secrets.json
77
npm-debug.log

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# The-Welcome-Bot
22

3-
> a GitHub App built with [Probot](https://github.com/probot/probot) that welcomes new users on any repository.
3+
> A Github App built with [Probot](https://github.com/probot/probot) that welcomes new users in any repository.

index.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,9 @@ module.exports = (robot) => {
1717
username: context.payload.sender.login,
1818
repositoryName: context.payload.repository.full_name
1919
}).then(async user => {
20-
21-
console.log("reach")
22-
2320
try {
24-
console.log("reached1")
2521
const config = await context.config('config.yml');
26-
console.log("reached2")
27-
2822
if (config.welcomeMessage) {
29-
console.log("reached3")
30-
3123
context.github.issues.createComment(context.issue({body: config.welcomeMessage}))
3224
}
3325
} catch (err) {

0 commit comments

Comments
 (0)