aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/.github/workflows/pending-set.yml
blob: f59ac9439eacc5d6222d856f72c69a82dc35bef2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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: |
        curl \
          -X POST \
          -H "Accept: application/vnd.github.v3+json" \
          -H "Authorization: token $GITHUB_TOKEN" \
          -d '{"state": "failure", "target_url": " ", "description": "This failed status will be cleared when ofborg finishes eval.", "context": "Wait for ofborg"}' \
          "https://api.github.com/repos/NixOS/nixpkgs/statuses/${{ github.event.pull_request.head.sha }}"