Skip to content

Generate currentIssues.json #3

Generate currentIssues.json

Generate currentIssues.json #3

Workflow file for this run

name: Generate currentIssues.json
on:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 0,8,16 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
generate-endpoints-json:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- name: Commit & Push
run: |
set -x
bun run generate-task
git config user.name github-actions[bot]
git config user.email github-actions[bot]@users.noreply.github.com
git add .
git commit -m 'chore: update .endpoints.json'
git push
if: steps.diff.outcome == 'failure'