2020-08-23 06:57:07 +01:00
name : "set pending status"
on :
pull_request_target :
jobs :
action :
runs-on : ubuntu-latest
steps :
- name : set pending status
if : github.repository_owner == 'NixOS'
env :
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
run : |
2020-08-26 13:03:45 +01:00
curl \
-X POST \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token $GITHUB_TOKEN" \
2020-08-31 00:40:30 +01:00
-d '{"state": "pending", "target_url": " ", "description": "This pending status will be cleared when ofborg starts eval.", "context": "Wait for ofborg"}' \
2020-08-26 13:03:45 +01:00
"https://api.github.com/repos/NixOS/nixpkgs/statuses/${{ github.event.pull_request.head.sha }}"