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.
5 lines
297 B
5 lines
297 B
REPOSITORY_REF="$1" |
|
TOKEN="$2" |
|
|
|
curl -H "Accept: application/vnd.github.everest-preview+json" -H "Authorization: token ${TOKEN}" --request POST --data '{"event_type": "request-build-reference"}' https://api.github.com/repos/${REPOSITORY_REF}/dispatches |
|
echo "Requested Build for $REPOSITORY_REF"
|
|
|