feat: add CHANGELOG.md and sync-changelog workflow #4
This file contains hidden or 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: Sync Changelog to Supabase | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'CHANGELOG.md' | |
| workflow_dispatch: | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: v2.x | |
| - name: Sync changelog | |
| env: | |
| SUPABASE_SERVICE_KEY: ${{ secrets.SUPABASE_SERVICE_KEY }} | |
| VLLM_API_KEY: ${{ secrets.DOS_API_KEY }} | |
| VLLM_URL: https://inference.dos.ai | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: deno run --allow-net --allow-read --allow-env scripts/sync-changelog.ts |