Revision 27e5d246fe64af7837cfd766556d225192546e21 authored by Hanno Rein on 24 July 2022, 14:12:32 UTC, committed by Hanno Rein on 24 July 2022, 14:12:32 UTC
1 parent 9ebb6af
Raw File
triggerdependencybuilds.sh
#!/bin/bash -l

body='{
"request": {
"branch":"main"
}}'

curl -s -X POST \
   -H "Content-Type: application/json" \
   -H "Accept: application/json" \
   -H "Travis-API-Version: 3" \
   -H "Authorization: token "$TRAVIS_API_TOKEN \
   -d "$body" \
   https://api.travis-ci.org/repo/dtamayo%2Freboundx/requests
back to top