File tree 3 files changed +2
-10
lines changed 3 files changed +2
-10
lines changed Original file line number Diff line number Diff line change 1
1
.env
2
2
node_modules
3
3
* .pem
4
- .DS_Store /
4
+ .DS_Store
5
5
.idea
6
6
secrets.json
7
7
npm-debug.log
Original file line number Diff line number Diff line change 1
1
# The-Welcome-Bot
2
2
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.
Original file line number Diff line number Diff line change @@ -17,17 +17,9 @@ module.exports = (robot) => {
17
17
username : context . payload . sender . login ,
18
18
repositoryName : context . payload . repository . full_name
19
19
} ) . then ( async user => {
20
-
21
- console . log ( "reach" )
22
-
23
20
try {
24
- console . log ( "reached1" )
25
21
const config = await context . config ( 'config.yml' ) ;
26
- console . log ( "reached2" )
27
-
28
22
if ( config . welcomeMessage ) {
29
- console . log ( "reached3" )
30
-
31
23
context . github . issues . createComment ( context . issue ( { body : config . welcomeMessage } ) )
32
24
}
33
25
} catch ( err ) {
You can’t perform that action at this time.
0 commit comments