Skip to content

An Action that runs flyway with the specified command and parameters.

License

Notifications You must be signed in to change notification settings

im-open/run-flyway-command

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

run-flyway-command

A GitHub Action that will run Flyway against a specified database. Flyway must be installed in order for this Action to work. The setup-flyway Action can be used for that purpose.

Index

Inputs

Parameter Is Required Default Description
db-server-name true N/A The database server name.
db-server-port false 1433 The port the database server listens on.
db-name true N/A The name of the database to run flyway against.
trust-server-certificate false false A boolean that controls whether or not to validate the SQL Server TLS certificate.
migration-files-path true N/A The path to the base directory containing the migration files to have flyway process.
flyway-command true N/A The flyway command to run; e.g migrate, validate, etc.
migration-history-table true N/A The table where the migration history lives. This is most likely dbo.MigrationHistory or Flyway.MigrationHistory.
baseline-version false 0 The baseline version to send to the flyway command.
managed-schemas true N/A A comma separated list of schemas that are to be managed by Flyway.MigrationHistory.
enable-out-of-order false false A switch that allows new migrations that are a lower version number than a current migration to be run.
validate-migrations false true A switch determining whether flyway should validate the migration scripts before running them.
use-integrated-security false false A switch defining whether or not to use integrated security. If not provided, a password should be.
use-azure-service-principal false false A switch to indicate that an Azure Active Directory Service Principal will be used to authenticate with the SQL Server.
use-azure-default-credential false false A switch to indicate that an Azure Active Directory Credential will be used to authenticate with the SQL Server. This credential includes any credential in the Azure Identity Provider. Requires flyway version 10.17.0 or later.
username false N/A The username of the user making the changes, which is put into the MigrationHistory table, and also to login with if not using integrated security. This should be the Service Principal ID if use-azure-service-principal is set to true.
password false N/A The password for the user making changes if not using integrated security. This should be the Service Principal Secret if use-azure-service-principal is set to true.
extra-parameters false N/A A string containing anything extra that should be added to the flyway command.

Usage Examples

Using user/password authentication

jobs:
  migrate-database:
    runs-on: im-windows-sql-server
    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Setup Flyway
        uses: actions/[email protected]
        with:
          version: 10.18.1

      - name: Run Flyway Migrations
        # You may also reference the major or major.minor version
        uses: im-open/[email protected]
        with:
          db-server-name: 'localhost'
          db-server-port: '1433'
          db-name: 'LocalDb'
          trust-server-certificate: 'true'
          migration-files-path: './src/Database/Migrations'
          flyway-command: 'migrate'
          migration-history-table: 'dbo.MigrationHistory'
          baseline-version: '0'
          managed-schemas: 'dbo,MyCustomSchema'
          enable-out-of-order: 'true'
          use-integrated-security: 'false'
          username: 'database-user'
          password: '${{ secrets.DbUserPassword }}'
          extra-parameters: '-lockRetryCount=20 -dryRunOutput=./dry-run-output'

Using Azure Service Principal authentication

jobs:
  migrate-database:
    runs-on: im-windows-sql-server
    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Setup Flyway
        uses: actions/[email protected]
        with:
          version: 5.1.4

      - name: Run Flyway Migrations
        # You may also reference the major or major.minor version
        uses: im-open/[email protected]
        with:
          db-server-name: 'localhost'
          db-server-port: '1433'
          db-name: 'LocalDb'
          trust-server-certificate: 'true'
          migration-files-path: './src/Database/Migrations'
          flyway-command: 'migrate'
          migration-history-table: 'dbo.MigrationHistory'
          baseline-version: '0'
          managed-schemas: 'dbo,MyCustomSchema'
          enable-out-of-order: 'true'
          use-azure-service-principal: 'true'
          username: '${{ secrets.AZ_SERVICE_PRINCIPAL_ID }}'
          password: '${{ secrets.AZ_SERVICE_PRINCIPAL_SECRET }}'

Using Azure Service Principal Federated Credential

To use this method you must have flyway version 10.17.0 or later installed.

jobs:
  migrate-database:
    runs-on: im-windows-sql-server
    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Setup Flyway
        uses: actions/[email protected]
        with:
          version: 10.18.1
          use-redgate-url: true # Must set this to true because maven flyway has broken dependencies for Auzre.Identity

      - name: AZ Login
        id: login
        uses: azure/login@v2
        with:
          # This is an org-level variable
          tenant-id: ${{ vars.ARM_TENANT_ID }}
          # These are env-level variables
          subscription-id: ${{ vars.ARM_SUBSCRIPTION_ID }}
          client-id: ${{ vars.ARM_CLIENT_ID }}

      - name: Run Flyway Migrations
        # You may also reference the major or major.minor version
        uses: im-open/[email protected]
        with:
          db-server-name: 'localhost'
          db-server-port: '1433'
          db-name: 'LocalDb'
          trust-server-certificate: 'true'
          migration-files-path: './src/Database/Migrations'
          flyway-command: 'migrate'
          migration-history-table: 'dbo.MigrationHistory'
          baseline-version: '0'
          managed-schemas: 'dbo,MyCustomSchema'
          enable-out-of-order: 'true'
          use-azure-default-credential: 'true'

Contributing

When creating PRs, please review the following guidelines:

  • The action code does not contain sensitive information.
  • At least one of the commit messages contains the appropriate +semver: keywords listed under Incrementing the Version for major and minor increments.
  • The README.md has been updated with the latest version of the action. See Updating the README.md for details.

Incrementing the Version

This repo uses git-version-lite in its workflows to examine commit messages to determine whether to perform a major, minor or patch increment on merge if source code changes have been made. The following table provides the fragment that should be included in a commit message to active different increment strategies.

Increment Type Commit Message Fragment
major +semver:breaking
major +semver:major
minor +semver:feature
minor +semver:minor
patch default increment type, no comment needed

Source Code Changes

The files and directories that are considered source code are listed in the files-with-code and dirs-with-code arguments in both the build-and-review-pr and increment-version-on-merge workflows.

If a PR contains source code changes, the README.md should be updated with the latest action version. The build-and-review-pr workflow will ensure these steps are performed when they are required. The workflow will provide instructions for completing these steps if the PR Author does not initially complete them.

If a PR consists solely of non-source code changes like changes to the README.md or workflows under ./.github/workflows, version updates do not need to be performed.

Updating the README.md

If changes are made to the action's source code, the usage examples section of this file should be updated with the next version of the action. Each instance of this action should be updated. This helps users know what the latest tag is without having to navigate to the Tags page of the repository. See Incrementing the Version for details on how to determine what the next version will be or consult the first workflow run for the PR which will also calculate the next version.

Code of Conduct

This project has adopted the im-open's Code of Conduct.

License

Copyright © 2023, Extend Health, LLC. Code released under the MIT license.

About

An Action that runs flyway with the specified command and parameters.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published