2020-08-23 06:57:07 +01:00
|
|
|
name: "clear pending status"
|
|
|
|
|
|
|
|
on:
|
|
|
|
check_suite:
|
|
|
|
types: [ completed ]
|
|
|
|
|
2022-07-08 18:53:38 +01:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2020-08-23 06:57:07 +01:00
|
|
|
jobs:
|
|
|
|
action:
|
2022-07-08 18:53:38 +01:00
|
|
|
permissions:
|
|
|
|
statuses: write
|
2020-08-23 06:57:07 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: clear pending status
|
|
|
|
if: github.repository_owner == 'NixOS' && github.event.check_suite.app.name == 'OfBorg'
|
|
|
|
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" \
|
|
|
|
-d '{"state": "success", "target_url": " ", "description": " ", "context": "Wait for ofborg"}' \
|
|
|
|
"https://api.github.com/repos/NixOS/nixpkgs/statuses/${{ github.event.check_suite.head_sha }}"
|