Update - Actions workflows have started running again. We're continuing to work towards full recovery. Mar 29, 16:47 UTC Update - Actions is now experiencing degraded performance. We are still investigating and will provide an update when we have one. Mar 29, 16:22 UTC Update - We are seeing signs of recovery for Actions and continue to monitor ...
Incident History - GitHub Status
You can use workflow run api :
GET https://api.github.com/repos/[owner]/[repo]/actions/workflows/[workflowID]/runs
can also be the filename, in the following example [workflowID] :ci.yml
https://api.github.com/repos/bertrandmartel/tableau-scraping/actions/workflows/ci.yml/runs
Then you can get the first run using and curl :jq
curl -s "https://api.github.com/repos/bertrandmartel/tableau-scraping/actions/workflows/ci.yml/runs" | \
jq -r '.workflow_runs[0].status'
output:
completed