Skip to content

Official GitHub Action to run Liquibase Checks Disable

Notifications You must be signed in to change notification settings

liquibase-github-actions/checks-disable

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

Repository files navigation

Liquibase Checks Disable Action

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

Checks Disable

Disable an enabled check for current configuration

Usage

steps:
- uses: actions/checkout@v3
- uses: liquibase-github-actions/checks-disable@v4.28.0
  with:
    # Name of check to disable
    # 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 disable 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-disable@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.