Skip to content

status

status #267

Workflow file for this run

name: status
on:
schedule:
- cron: '*/5 * * * *'
workflow_dispatch:
permissions:
contents: write
actions: read
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
curl -s -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
'https://api.github.com/repos/bniladridas/cursor/actions/runs?per_page=50' \
> .github/ci-status.json
git config user.name 'palmshed-cursor[bot]'
git config user.email '294867837+palmshed-cursor[bot]@users.noreply.github.com'
git checkout --orphan ci-cache
git reset
git add .github/ci-status.json
git commit -m 'update ci-status.json'
git push origin ci-cache --force