10 lines
		
	
	
		
			361 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
		
		
			
		
	
	
			10 lines
		
	
	
		
			361 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| 
								 | 
							
								#!/usr/bin/env bash
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								# Trigger mynewt-tinyusb-example repo each push
							 | 
						||
| 
								 | 
							
								curl -s -X POST \
							 | 
						||
| 
								 | 
							
								   -H "Content-Type: application/json" \
							 | 
						||
| 
								 | 
							
								   -H "Accept: application/json" \
							 | 
						||
| 
								 | 
							
								   -H "Travis-API-Version: 3" \
							 | 
						||
| 
								 | 
							
								   -H "Authorization: token $TRAVIS_TOKEN" \
							 | 
						||
| 
								 | 
							
								   -d '{ "request": { "branch":"master" }}' \
							 | 
						||
| 
								 | 
							
								   https://api.travis-ci.com/repo/hathach%2Fmynewt-tinyusb-example/requests
							 |