liquibase-github-actions / checks-enable

Official GitHub Action to run Liquibase Checks Enable

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

Official GitHub Action to run Liquibase Checks Enable


Languages

Language:Shell 98.8%Language:Dockerfile 1.2%