Migrate from Planetscale to Neon (Part 1) #176
Workflow file for this run
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: Check if db migrations are needed | |
on: | |
pull_request: | |
branches: [main] | |
paths: | |
- 'drizzle/**' | |
jobs: | |
comment-if-db-migrations: | |
permissions: | |
pull-requests: write | |
contents: read | |
runs-on: ubuntu-latest | |
steps: | |
- name: Comment PR - db migrated | |
uses: thollander/actions-comment-pull-request@main | |
with: | |
message: | | |
> [!NOTE] | |
> This PR introduces changes to the database. | |
**Remember to migrate the DB** | |
For now it is not possible to run the migrations automatically, so you need to do it manually. | |
comment_tag: execution |