Skip to content

Commit

Permalink
ci: simplify to GitHub Checks action for check run creation
Browse files Browse the repository at this point in the history
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
  • Loading branch information
devin-ai-integration[bot] and aaronsteers committed Jan 24, 2025
1 parent 242a23a commit 79003a2
Showing 1 changed file with 12 additions and 28 deletions.
40 changes: 12 additions & 28 deletions .github/workflows/dummy_check_result.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,31 +16,15 @@ jobs:
contents: read
steps:
- name: Create Check Run
env:
GH_TOKEN: ${{ github.token }}
run: |
HEAD_SHA="${{ github.event.pull_request.head.sha || github.sha }}"
# Create check run with custom details URL
response=$(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="Test Results (Direct API)" \
-f head_sha="$HEAD_SHA" \
-f status="completed" \
-f conclusion="failure" \
-f details_url="https://www.google.com/search?q=test-failure" \
-f output='{"title":"Test Results","summary":"This is a test check using direct API calls."}')
# Get the check run ID
check_id=$(echo "$response" | jq -r '.id')
echo "Created check run ID: $check_id"
# Verify the check run details
echo "Verifying check run details..."
gh api \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
repos/${{ github.repository }}/check-runs/$check_id | jq '{name, details_url, html_url, status, conclusion}'
uses: LouisBrunner/[email protected]
with:
token: ${{ github.token }}
name: "Test Results (Custom Check)"
status: completed
conclusion: failure
details_url: "https://www.google.com/search?q=test-failure"
output: |
{
"title": "Test Results",
"summary": "This is a test check using the GitHub Checks action."
}

0 comments on commit 79003a2

Please sign in to comment.