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: PR Review | |
| on: | |
| # Run this workflow on every PR event. Existing review apps will be updated when the PR is updated. | |
| # Neon branches are created and removed according to PR updates | |
| pull_request: | |
| types: [opened, reopened, synchronize, closed] | |
| jobs: | |
| pr-preview: | |
| runs-on: ubuntu-latest |
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
| case | |
| when host like '%cluster-%.rds.amazonaws.com%' then 'Aurora' | |
| when host like '%rds.amazonaws.com%' then 'RDS' | |
| when host like 'ec2%' then 'EC2 Self-Hosted' | |
| when host like '%supabase.co%' then 'Supabase' -- db.project.supabase.co & region.supabase.com | |
| when host like '%timescale.com%' then 'Timescale' | |
| when host like '%postgres.vercel-storage.com%' then 'Vercel Postgres' | |
| when host like '%azure.neon.tech%' then 'Neon (Azure)' | |
| when host like '%aws.neon.tech%' then 'Neon (AWS)' | |
| when host like '%.turso.io%' then 'Turso' |
OlderNewer