You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							30 lines
						
					
					
						
							833 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							30 lines
						
					
					
						
							833 B
						
					
					
				
								name: Check notify api
							 | 
						|
								
							 | 
						|
								on:
							 | 
						|
								  pull_request_target:
							 | 
						|
								    types:
							 | 
						|
								      - opened
							 | 
						|
								    branches:
							 | 
						|
								      - 'dev'
							 | 
						|
								    paths:
							 | 
						|
								      - 'notify/*.sh'
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								jobs:
							 | 
						|
								  welcome:
							 | 
						|
								    runs-on: ubuntu-latest
							 | 
						|
								    steps:
							 | 
						|
								      - uses: actions/github-script@v6
							 | 
						|
								        with:
							 | 
						|
								          script: |
							 | 
						|
								            await github.rest.issues.createComment({
							 | 
						|
								              issue_number: context.issue.number,
							 | 
						|
								              owner: context.repo.owner,
							 | 
						|
								              repo: context.repo.repo,
							 | 
						|
								              body: `**Welcome**
							 | 
						|
								                Please make sure you've read our [Code-of-conduct](../wiki/Code-of-conduct) and  add the usage here: [notify](../wiki/notify).
							 | 
						|
								                Then reply on this message, otherwise, your code will not be reviewed or merged.
							 | 
						|
								                We look forward to reviewing your Pull request shortly ✨
							 | 
						|
								                `
							 | 
						|
								            })            
							 | 
						|
								
							 |