2020-08-23 07:57:07 +02:00
name : "set pending status"
on :
pull_request_target :
2022-03-19 19:43:22 +01:00
# WARNING:
# When extending this action, be aware that $GITHUB_TOKEN allows write access to
# the GitHub repository. This means that it should not evaluate user input in a
# way that allows code injection.
2022-07-08 19:53:38 +02:00
permissions :
contents : read
2020-08-23 07:57:07 +02:00
jobs :
action :
2022-07-08 19:53:38 +02:00
permissions :
statuses : write
2020-08-23 07:57:07 +02:00
runs-on : ubuntu-latest
steps :
- name : set pending status
if : github.repository_owner == 'NixOS'
env :
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
run : |
2020-08-26 14:03:45 +02:00
curl \
-X POST \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token $GITHUB_TOKEN" \
2020-08-31 01:40:30 +02:00
-d '{"state": "pending", "target_url": " ", "description": "This pending status will be cleared when ofborg starts eval.", "context": "Wait for ofborg"}' \
2020-08-26 14:03:45 +02:00
"https://api.github.com/repos/NixOS/nixpkgs/statuses/${{ github.event.pull_request.head.sha }}"