Skip to content
Snippets Groups Projects
Unverified Commit f1b8dd22 authored by Dmitry Kalinkin's avatar Dmitry Kalinkin Committed by GitHub
Browse files

mirror.yaml: Set pending EICweb status (#53)

parent 6f279880
No related branches found
No related tags found
No related merge requests found
Pipeline #102029 failed
......@@ -16,6 +16,7 @@ jobs:
permissions:
actions: write
contents: read
statuses: write
steps:
- name: Checkout
uses: actions/checkout@v4
......@@ -41,3 +42,17 @@ jobs:
GITHUB_SHA=${{ github.event.pull_request.head.sha || github.sha }}
GITHUB_PR=${{ github.event.pull_request.number }}
PIPELINE_NAME=${{ github.repository }}: ${{ github.event.pull_request.title || github.ref_name }}
- name: Set pending EICweb status
if: ${{ github.event_name != 'delete' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DETECTOR_CONFIG: epic_craterlake
run: |
curl \
--fail-with-body \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer $GITHUB_TOKEN" \
-H "X-GitHub-Api-Version: 2022-11-28" \
-d '{"context": "eicweb/detector_benchmarks ('"$DETECTOR_CONFIG"')", "state": "pending", "description": "Waiting for response from the EICweb"}' \
"https://api.github.com/repos/${{ github.repository }}/statuses/${{ github.event.pull_request.head.sha || github.sha }}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment