diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c3cbc0..e2efcbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## 2.0.0 - 2024-09-21 + +### Added + +- Added more configuration options (#10, #15). Thanks @Agraphie! + + ## 1.0.2 - 2023-12-05 ### Fixed diff --git a/README.md b/README.md index 6ebd6e6..962a59d 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - uses: sbdchd/squawk-action@v1 + - uses: sbdchd/squawk-action@v2 with: pattern: "migrations/*.sql" version: "latest" @@ -48,11 +48,14 @@ jobs: echo "$modified_migrations" echo "::set-output name=file_names::$modified_migrations" id: modified-migrations - - uses: sbdchd/squawk-action@v1 + - uses: sbdchd/squawk-action@v2 with: pattern: ${{ steps.modified-migrations.outputs.file_names }} ``` +> [!TIP] +> See `action.yml` for more action inputs. + ## example report [![Example Squawk PR Comment](./squawk-pr-comment.png)](https://github.com/sbdchd/squawk/pull/14#issuecomment-647009446)