Update database types #24
This file contains 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: Update database types | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
env: | |
SUPABASE_ACCESS_TOKEN: ${{ secrets.SUPABASE_SERVICE_ROLE_KEY }} | |
PROJECT_ID: ${{ secrets.SUPABASE_PROJECT_ID }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- run: npm run update-types | |
- run: npm run update-types | |
- name: check for file changes | |
id: git_status | |
run: | | |
echo "status=$(git status -s)" >> $GITHUB_OUTPUT | |
- name: Commit files | |
if: ${{contains(steps.git_status.outputs.status, ' ')}} | |
run: | | |
git add database.types.ts | |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
git commit -m "Update database types" -a | |
- name: Push changes | |
if: ${{contains(steps.git_status.outputs.status, ' ')}} | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} |