about summary refs log tree commit diff
path: root/nixpkgs/.github/workflows/pending-clear.yml
blob: 7e8960597e5c6a24133eec20b445be8da111882c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: "clear pending status"

on:
  check_suite:
    types: [ completed ]

permissions:
  contents: read

jobs:
  action:
    permissions:
      statuses: write
    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: |
        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 }}"