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
| # Copy this to .env and fill in values | |
| # GitHub Token (fine-grained PAT) | |
| # Create at: https://github.com/settings/tokens?type=beta | |
| # Required permissions: | |
| # - Contents: Read and write (for push, worktrees) | |
| # - Pull requests: Read and write (create, comment) | |
| # - Metadata: Read (required) | |
| GH_TOKEN=github_pat_... |
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
| package com.example | |
| import liquibase.Contexts; | |
| import liquibase.LabelExpression; | |
| import liquibase.Liquibase; | |
| import liquibase.database.Database; | |
| import liquibase.database.DatabaseFactory; | |
| import liquibase.database.jvm.JdbcConnection; | |
| import liquibase.resource.FileSystemResourceAccessor; | |
| import org.jooq.DSLContext; |