Browse Source
Merge pull request #9145 from nextcloud/use-authorized-github-checks
Add auth token to github requests
pull/9134/head
Morris Jobke
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
8 additions and
0 deletions
-
.drone.yml
-
build/signed-off-checker.php
|
|
|
@ -18,6 +18,7 @@ pipeline: |
|
|
|
image: nextcloudci/php7.0:php7.0-19 |
|
|
|
commands: |
|
|
|
- ./autotest-checkers.sh |
|
|
|
secrets: [ github_token ] |
|
|
|
when: |
|
|
|
matrix: |
|
|
|
TESTS: checkers |
|
|
|
|
|
|
|
@ -31,6 +31,7 @@ $pullRequestNumber = getenv('DRONE_PULL_REQUEST'); |
|
|
|
$repoOwner = getenv('DRONE_REPO_OWNER'); |
|
|
|
$repoName = getenv('DRONE_REPO_NAME'); |
|
|
|
$droneEvent = getenv('DRONE_BUILD_EVENT'); |
|
|
|
$githubToken = getenv('GITHUB_TOKEN'); |
|
|
|
|
|
|
|
if(is_string($droneEvent) && $droneEvent === 'push') { |
|
|
|
echo("Push event - no signed-off check required.\n"); |
|
|
|
@ -52,10 +53,16 @@ if(!is_string($repoName) || $repoName === '') { |
|
|
|
exit(1); |
|
|
|
} |
|
|
|
|
|
|
|
if(!is_string($githubToken) || $githubToken === '') { |
|
|
|
echo("The environment variable GITHUB_TOKEN has no proper value.\n"); |
|
|
|
exit(1); |
|
|
|
} |
|
|
|
|
|
|
|
$ch = curl_init(); |
|
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); |
|
|
|
curl_setopt($ch, CURLOPT_URL, 'https://api.github.com/repos/'.$repoOwner.'/'.$repoName.'/pulls/'.$pullRequestNumber.'/commits'); |
|
|
|
curl_setopt($ch, CURLOPT_USERAGENT, 'CI for Nextcloud (https://github.com/nextcloud/server)'); |
|
|
|
curl_setopt($ch, CURLOPT_HTTPHEADER, 'Authorization: token ' . $githubToken); |
|
|
|
$response = curl_exec($ch); |
|
|
|
curl_close($ch); |
|
|
|
|
|
|
|
|