simple_config 0.134.0

A config language for humans that is not self-describing.
Documentation
# https://github.com/NixOS/nixpkgs/blob/8fe39d98e4f3f431c5fc2821d859947f0f7a114a/.github/workflows/pending-set.yml

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": "pending", "target_url": " ", "description": "This pending status will be cleared when ofborg starts eval.", "context": "Wait for ofborg"}' \
            "https://api.github.com/repos/NixOS/nixpkgs/statuses/${{ github.event.pull_request.head.sha }}"