-
Notifications
You must be signed in to change notification settings - Fork 6
57 lines (54 loc) · 1.83 KB
/
dummy_check_result.yml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Dummy Check Result
on:
pull_request:
branches:
- main
paths:
- '.github/workflows/dummy_check_result.yml'
jobs:
success_check:
name: "Dummy Check (success)"
runs-on: ubuntu-22.04
permissions:
checks: write
contents: read
steps:
- name: Create Success Check Run
env:
GH_TOKEN: ${{ github.token }}
run: |
HEAD_SHA="${{ github.event.pull_request.head.sha || github.sha }}"
gh api \
--method POST \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
repos/${{ github.repository }}/check-runs \
-f name="Dummy Check (success)" \
-f head_sha="$HEAD_SHA" \
-f status="completed" \
-f conclusion="success" \
-f details_url="https://www.google.com/search?q=success" \
--raw-field output='{"title":"Success Check","summary":"This is a dummy success check."}'
failure_check:
name: "Dummy Check (fail)"
runs-on: ubuntu-22.04
permissions:
checks: write
contents: read
steps:
- name: Create Failure Check Run
env:
GH_TOKEN: ${{ github.token }}
run: |
HEAD_SHA="${{ github.event.pull_request.head.sha || github.sha }}"
gh api \
--method POST \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
repos/${{ github.repository }}/check-runs \
-f name="Dummy Check (fail)" \
-f head_sha="$HEAD_SHA" \
-f status="completed" \
-f conclusion="failure" \
-f details_url="https://www.google.com/search?q=failed" \
--raw-field output='{"title":"Failure Check","summary":"This is a dummy failure check."}'