Skip to content

Commit

Permalink
Easier testing
Browse files Browse the repository at this point in the history
  • Loading branch information
bitonality committed May 29, 2024
1 parent f226db9 commit b16c2fe
Showing 1 changed file with 11 additions and 26 deletions.
37 changes: 11 additions & 26 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,29 +11,14 @@ jobs:
contents: write # Permission to write a repository_dispatch requests
steps:
- name: Create Check
id: checkrun
env:
GH_TOKEN: ${{ github.token }} # Expose the token for GH CLI
run: |
CHECKID=$(gh api -X POST -H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
-f name='Super Check' \
-f head_sha='${{ github.event.pull_request.head.sha }}' \
-f status='queued' \
-f 'output[title]=My Check Run Title' \
-f 'output[summary]=A *fancy* summary' \
-f 'output[text]=More detailed Markdown **text**' \
--jq '.id' \
/repos/${{ github.repository }}/check-runs)
echo "checkId=$CHECKID" >> $GITHUB_OUTPUT
- name: Repository Dispatch
env:
GH_TOKEN: ${{ github.token }}
run: |
gh api -X POST -H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
-f 'event_type=my-check' \
-f 'client_payload[checkRunId]=${{ steps.checkrun.outputs.checkId }}' \
-f 'client_payload[sha]=${{ github.sha }}' \
/repos/${{ github.repository }}/dispatches
run: sleep 10
success:
name: Success gate
if: always()
needs:
- start-check
runs-on: ubuntu-latest
steps:
- run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'
- name: Done
run: exit 0

0 comments on commit b16c2fe

Please sign in to comment.