Skip to content

Fetch latest ChatGPT outages data #56073

Fetch latest ChatGPT outages data

Fetch latest ChatGPT outages data #56073

Workflow file for this run

---
name: Fetch latest ChatGPT outages data
on:
push:
workflow_dispatch:
schedule:
- cron: "1,16,31,46 * * * *"
jobs:
scheduled:
runs-on: ubuntu-latest
steps:
- name: Fetches repo
uses: actions/checkout@v2
- name: Get and format api
run: |-
curl https://status.openai.com/api/v2/status.json | jq . > chatgpt_outages.json
- name: Get and format api
run: |-
curl https://status.openai.com/api/v2/summary.json | jq . > chatgpt_summary.json
- name: Add results to repo
run: |-
git config user.name "Outages Project Worker"
git config user.email "[email protected]"
git add -A *.json
timestamp=$(date -u -Is)
git commit -m "Update outages data on ${timestamp}" || exit 0
git push