Skip to content

Official GitHub Action to run Liquibase Checks Enable

Notifications You must be signed in to change notification settings

liquibase-github-actions/checks-enable

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

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Liquibase Checks Enable Action

Official GitHub Action to run Liquibase Checks Enable in your GitHub Action Workflow. For more information on how checks enable works visit the Official Liquibase Documentation.

Checks Enable

Enable a disabled check for current configuration

Usage

steps:
- uses: actions/checkout@v3
- uses: liquibase-github-actions/checks-enable@v4.28.0
  with:
    # Name of check to enable
    # string
    # Required
    checkName: ""

    # Automatically enable new quality checks in liquibase.checks.conf file when they are available. Options: [true|false]
    # bool
    # Optional
    autoEnableNewChecks: ""

    # Allows automatic backup and updating of liquibase.checks.conf file when new quality checks are available, or for file format changes. Options: [on|off]
    # bool
    # Optional
    autoUpdate: ""

    # Relative or fully qualified path to a configuration file for checks execution
    # string
    # Optional
    checksSettingsFile: ""

Secrets

It is a good practice to protect your database credentials with GitHub Secrets

Optional Liquibase Global Inputs

The liquibase checks enable action accepts all valid liquibase global options as optional parameters. A full list is available in the official Liquibase Documentation.

Example

steps:
  - uses: actions/checkout@v3
  - uses: liquibase-github-actions/checks-enable@v4.28.0
    with:
      checkName: ""
      headless: true
      licenseKey: ${{ secrets.LIQUIBASE_LICENSE_KEY }}
      logLevel: INFO

Feedback and Issues

This action is automatically generated. Please submit all feedback and issues with the generator repository.