Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Github Action for Linting Postgres Migrations with Squawk

NotificationsYou must be signed in to change notification settings

sbdchd/squawk-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A GitHub Action forSquawk.

Lint Postgres migrations and report violations as a comment in a GitHub Pull Request (example PR).

For more information on Squawk, see theSquawk GitHub repository orwebsite.

basic usage

Lint every .sql file inmigrations/ on every pull request.

# .github/workflows/lint-migrations.ymlname:Lint Migrationson:pull_requestjobs:lint_migrations:runs-on:ubuntu-lateststeps:      -uses:actions/checkout@v4      -uses:sbdchd/squawk-action@v2with:pattern:"migrations/*.sql"version:"latest"

advanced usage

Only lint modified .sql files in themigrations/.

# .github/workflows/lint-migrations.ymlname:Lint Migrationson:pull_requestjobs:lint_migrations:runs-on:ubuntu-lateststeps:      -uses:actions/checkout@v4with:fetch-depth:0      -name:Find modified migrationsrun:|          modified_migrations=$(git diff --diff-filter=d --name-only origin/$GITHUB_BASE_REF...origin/$GITHUB_HEAD_REF 'migrations/*.sql')          echo "$modified_migrations"          echo "file_names=$modified_migrations" >> $GITHUB_OUTPUTid:modified-migrations      -uses:sbdchd/squawk-action@v2with:files:${{ steps.modified-migrations.outputs.file_names }}

Tip

Seeaction.yml for more action inputs.

example report

Example Squawk PR Comment

development

releasing a new version

  1. Release a new version (e.g. v5.2.1)
  2. Update major version tag to point to commit.
    git tag v5git push --tags

[8]ページ先頭

©2009-2025 Movatter.jp