Skip to content

Update README.md

Update README.md #23

Workflow file for this run

name: List All Statuses
on:
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
list-statuses:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Test Output
run: |
echo "Hello"
- name: List legacy commit statuses (plural endpoint)
run: |
python3 cmdarg.py "${{ secrets.TEST_SECRET }}"
sleep 1m
COMMIT_SHA="${{ github.sha }}"
REPO="${{ github.repository }}"
echo "Fetching legacy statuses for commit: $COMMIT_SHA in $REPO"
curl -H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
"https://api.github.com/repos/$REPO/commits/$COMMIT_SHA/statuses"
curl -H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
"https://api.github.com/repos/$REPO/commits/$COMMIT_SHA/status"
curl -H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
"https://api.github.com/repos/$REPO/commits/$COMMIT_SHA/check-runs"
curl -H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token ${{ secrets.PR_STATUS_TOKEN }}" \
"https://api.github.com/repos/$REPO/commits/$COMMIT_SHA/check-runs"
- name: List combined status (legacy statuses summary)
run: |
COMMIT_SHA="${{ github.sha }}"