Skip to content

Official GitHub Action to run Liquibase Checks Reset

Notifications You must be signed in to change notification settings

liquibase-github-actions/checks-reset

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

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Liquibase Checks Reset Action

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

Checks Reset

Reset the customization options for a check to defaults

Usage

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