{"id":5791373,"name":"liquibase-github-actions/migrate-sql","ecosystem":"actions","description":"Generate the SQL to deploy changes in the changelog which have not been deployed","homepage":"","licenses":null,"normalized_licenses":[],"repository_url":"https://github.com/liquibase-github-actions/migrate-sql","keywords_array":[],"namespace":"liquibase-github-actions","versions_count":11,"first_release_published_at":"2022-11-03T21:05:12.000Z","latest_release_published_at":"2023-06-26T20:08:08.000Z","latest_release_number":"v4.23.0","last_synced_at":"2026-01-08T21:08:45.815Z","created_at":"2023-01-03T21:39:28.545Z","updated_at":"2026-01-08T21:08:45.815Z","registry_url":"https://github.com/liquibase-github-actions/migrate-sql","install_command":null,"documentation_url":null,"metadata":{"name":"Liquibase Migrate Sql Action","description":"Generate the SQL to deploy changes in the changelog which have not been deployed","inputs":{"changeExecListenerClass":{"description":"Fully-qualified class which specifies a ChangeExecListener","required":false},"changeExecListenerPropertiesFile":{"description":"Path to a properties file for the ChangeExecListenerClass","required":false},"changelogFile":{"description":"*required* The root changelog","required":true},"contexts":{"description":"Changeset contexts to match","required":false},"defaultCatalogName":{"description":"The default catalog name to use for the database connection","required":false},"defaultSchemaName":{"description":"The default schema name to use for the database connection","required":false},"driver":{"description":"The JDBC driver class","required":false},"driverPropertiesFile":{"description":"The JDBC driver properties file","required":false},"labelFilter":{"description":"Changeset labels to match","required":false},"outputDefaultCatalog":{"description":"Control whether names of objects in the default catalog are fully qualified or not. If true they are. If false, only objects outside the default catalog are fully qualified","required":false},"outputDefaultSchema":{"description":"Control whether names of objects in the default schema are fully qualified or not. If true they are. If false, only objects outside the default schema are fully qualified","required":false},"password":{"description":"Password to use to connect to the database","required":false},"url":{"description":"*required* The JDBC database connection URL","required":true},"username":{"description":"Username to use to connect to the database","required":false},"alwaysDropInsteadOfReplace":{"description":"If true, drop and recreate a view instead of replacing it.","required":false},"alwaysOverrideStoredLogicSchema":{"description":"When generating SQL for createProcedure, should the procedure schema be forced to the default schema if no schemaName attribute is set?","required":false},"autoReorg":{"description":"Should Liquibase automatically include REORG TABLE commands when needed?","required":false},"changelogLockPollRate":{"description":"Number of seconds wait between checks to the changelog lock when it is locked","required":false},"changelogLockWaitTimeInMinutes":{"description":"Number of minutes to wait for the changelog lock to be available before giving up","required":false},"changelogParseMode":{"description":"Configures how to handle unknown fields in changelog files. Possible values: STRICT which causes parsing to fail, and LAX which continues with the parsing.","required":false},"classpath":{"description":"Additional classpath entries to use","required":false},"convertDataTypes":{"description":"Should Liquibase convert to/from STANDARD data types. Applies to both snapshot and update commands.","required":false},"customLogDataFile":{"description":"[PRO]Relative or fully qualified path to a yaml file containing key:value data to inject or exclude data from JSON structured logs. Learn more at https://docs.liquibase.com/structured-logging","required":false},"databaseChangelogLockTableName":{"description":"Name of table to use for tracking concurrent Liquibase usage","required":false},"databaseChangelogTableName":{"description":"Name of table to use for tracking change history","required":false},"databaseClass":{"description":"Class to use for Database implementation","required":false},"ddlLockTimeout":{"description":"The DDL_LOCK_TIMEOUT parameter indicates the number of seconds a DDL command should wait for the locks to become available before throwing the resource busy error message. This applies only to Oracle databases.","required":false},"defaultsFile":{"description":"File with default Liquibase properties","required":false},"diffColumnOrder":{"description":"Should Liquibase compare column order in diff operation?","required":false},"duplicateFileMode":{"description":"How to handle multiple files being found in the search path that have duplicate paths. Options are WARN (log warning and choose one at random) or ERROR (fail current operation)","required":false},"errorOnCircularIncludeAll":{"description":"Throw an error if Liquibase detects that an includeAll will cause a circular reference (and thus a changelog parse error).","required":false},"fileEncoding":{"description":"Encoding to use when reading files. Valid values include: UTF-8, UTF-16, UTF-16BE, UTF-16LE, US-ASCII, or OS to use the system configured encoding.","required":false},"filterLogMessages":{"description":"DEPRECATED: No longer used","required":false},"flowVerboseToString":{"description":"If true, display a more verbose output for the FlowFile toString representation","required":false},"generateChangesetCreatedValues":{"description":"Should Liquibase include a \"created\" attribute in diff/generateChangelog changesets with the current datetime","required":false},"generatedChangesetIdsContainsDescription":{"description":"Should Liquibase include the change description in the id when generating changesets?","required":false},"headless":{"description":"Force liquibase to think it has no access to a keyboard","required":false},"includeCatalogInSpecification":{"description":"Should Liquibase include the catalog name when determining equality?","required":false},"includeSystemClasspath":{"description":"Include the system classpath when resolving classes at runtime","required":false},"licenseKey":{"description":"Liquibase Pro or Liquibase Labs license key used to unlock paid capabilities. Get a free trial at https://liquibase.com/trial and use in CLI or add liquibase.licenseKey=\u003cyourKey\u003e into your defaults file.","required":false},"liquibaseCatalogName":{"description":"Catalog to use for Liquibase objects","required":false},"liquibaseSchemaName":{"description":"Schema to use for Liquibase objects","required":false},"liquibaseTablespaceName":{"description":"Tablespace to use for Liquibase objects","required":false},"logChannels":{"description":"Controls which log channels have their level set by the liquibase.logLevel setting. Comma separate multiple values. To set the level of all channels, use \"all\". Example: liquibase,org.mariadb.jdbc","required":false},"logFile":{"description":"","required":false},"logFormat":{"description":"Sets the format of log output to console or log files. Open Source users default to unstructured \"TEXT\" logs to the console or output log files. Pro users have the option to set value as \"JSON\" or \"JSON_PRETTY\" to enable json-structured log files to the console or output log files.","required":false},"logLevel":{"description":"Controls which logs get set to stderr AND to any log file. The CLI defaults, if log file set, to SEVERE. Others vary by integration. The official log levels are: OFF, SEVERE, WARNING, INFO, FINE","required":false},"mirrorConsoleMessagesToLog":{"description":"When set to true, the console messages are mirrored to the logs as [liquibase.ui] to provide a more complete picture of liquibase operations to log analysis tools. Set to false to change this behavior.","required":false},"missingPropertyMode":{"description":"How to handle changelog property expressions where a value is not set. For example, a string \"${address}\" when no \"address\" property was defined. Values can be: \"preserve\" which leaves the string as-is, \"empty\" which replaces it with an empty string, or \"error\" which stops processing with an error.","required":false},"monitorPerformance":{"description":"Enable performance tracking. Set to \"false\" to disable. If set to \"true\", data is stored to a `liquibase-TIMESTAMP.jfr` file in your working directory. Any other value will enable tracking and be used as the name of the file to write the data to.","required":false},"nativeExecutor":{"description":"Custom executor that can specified","required":false},"onMissingIncludeChangelog":{"description":"If set to WARN, then liquibase will not throw exception on missing changelog file, instead will show a warning message.","required":false},"outputFile":{"description":"","required":false},"outputFileEncoding":{"description":"Encoding to use when writing files","required":false},"outputLineSeparator":{"description":"Line separator for output","required":false},"preserveSchemaCase":{"description":"Should liquibase treat schema and catalog names as case sensitive?","required":false},"proLicenseKey":{"description":"DEPRECATED: Liquibase Pro license key used to unlock paid capabilities. Get a free trial at https://www.liquibase.com/protrial and use in CLI or add liquibase.pro.licenseKey=\u003cyourKey\u003e into your defaults file.","required":false},"proMarkUnusedNotDrop":{"description":"If a column would be dropped in a diffChangeLog, call markUnused instead if set to true","required":false},"proSqlInline":{"description":"If true, generate changeSets with SQL-based changes inlined instead of saving them to an external file","required":false},"proSynonymsDropPublic":{"description":"If false, do not drop public synonyms in diffChangeLog/dropAll","required":false},"promptForNonLocalDatabase":{"description":"Should Liquibase prompt if a non-local database is being accessed","required":false},"propertyProviderClass":{"description":"Implementation of Properties class to provide additional driver properties","required":false},"searchPath":{"description":"Complete list of Location(s) to search for files such as changelog files in. Multiple paths can be specified by separating them with commas.","required":false},"secureParsing":{"description":"If true, remove functionality from file parsers which could be used insecurely. Examples include (but not limited to) disabling remote XML entity support.","required":false},"shouldRun":{"description":"Should Liquibase commands execute","required":false},"shouldSnapshotData":{"description":"Should Liquibase snapshot data by default?","required":false},"showBanner":{"description":"If true, show a Liquibase banner on startup.","required":false},"sqlLogLevel":{"description":"Level to log SQL statements to","required":false},"sqlShowSqlWarnings":{"description":"Show SQLWarning messages","required":false},"strict":{"description":"Be stricter on allowed Liquibase configuration and setup?","required":false},"supportPropertyEscaping":{"description":"Support escaping changelog parameters using a colon. Example: ${:user.name}","required":false},"useProcedureSchema":{"description":"If set to true (default value), createProcedure tags with a set schemaName will modify the procedure body with the given schema name.","required":false},"validateXmlChangelogFiles":{"description":"Will perform xsd validation of XML changelog files. When many XML changelog files are included this validation may impact Liquibase performance. Defaults to true.","required":false}},"runs":{"using":"docker","image":"Dockerfile","args":["${{ inputs.changeExecListenerClass }}","${{ inputs.changeExecListenerPropertiesFile }}","${{ inputs.changelogFile }}","${{ inputs.contexts }}","${{ inputs.defaultCatalogName }}","${{ inputs.defaultSchemaName }}","${{ inputs.driver }}","${{ inputs.driverPropertiesFile }}","${{ inputs.labelFilter }}","${{ inputs.outputDefaultCatalog }}","${{ inputs.outputDefaultSchema }}","${{ inputs.password }}","${{ inputs.url }}","${{ inputs.username }}","${{ inputs.alwaysDropInsteadOfReplace }}","${{ inputs.alwaysOverrideStoredLogicSchema }}","${{ inputs.autoReorg }}","${{ inputs.changelogLockPollRate }}","${{ inputs.changelogLockWaitTimeInMinutes }}","${{ inputs.changelogParseMode }}","${{ inputs.classpath }}","${{ inputs.convertDataTypes }}","${{ inputs.customLogDataFile }}","${{ inputs.databaseChangelogLockTableName }}","${{ inputs.databaseChangelogTableName }}","${{ inputs.databaseClass }}","${{ inputs.ddlLockTimeout }}","${{ inputs.defaultsFile }}","${{ inputs.diffColumnOrder }}","${{ inputs.duplicateFileMode }}","${{ inputs.errorOnCircularIncludeAll }}","${{ inputs.fileEncoding }}","${{ inputs.filterLogMessages }}","${{ inputs.flowVerboseToString }}","${{ inputs.generateChangesetCreatedValues }}","${{ inputs.generatedChangesetIdsContainsDescription }}","${{ inputs.headless }}","${{ inputs.includeCatalogInSpecification }}","${{ inputs.includeSystemClasspath }}","${{ inputs.licenseKey }}","${{ inputs.liquibaseCatalogName }}","${{ inputs.liquibaseSchemaName }}","${{ inputs.liquibaseTablespaceName }}","${{ inputs.logChannels }}","${{ inputs.logFile }}","${{ inputs.logFormat }}","${{ inputs.logLevel }}","${{ inputs.mirrorConsoleMessagesToLog }}","${{ inputs.missingPropertyMode }}","${{ inputs.monitorPerformance }}","${{ inputs.nativeExecutor }}","${{ inputs.onMissingIncludeChangelog }}","${{ inputs.outputFile }}","${{ inputs.outputFileEncoding }}","${{ inputs.outputLineSeparator }}","${{ inputs.preserveSchemaCase }}","${{ inputs.proLicenseKey }}","${{ inputs.proMarkUnusedNotDrop }}","${{ inputs.proSqlInline }}","${{ inputs.proSynonymsDropPublic }}","${{ inputs.promptForNonLocalDatabase }}","${{ inputs.propertyProviderClass }}","${{ inputs.searchPath }}","${{ inputs.secureParsing }}","${{ inputs.shouldRun }}","${{ inputs.shouldSnapshotData }}","${{ inputs.showBanner }}","${{ inputs.sqlLogLevel }}","${{ inputs.sqlShowSqlWarnings }}","${{ inputs.strict }}","${{ inputs.supportPropertyEscaping }}","${{ inputs.useProcedureSchema }}","${{ inputs.validateXmlChangelogFiles }}"]},"branding":{"icon":"database","color":"red"},"default_branch":"main","path":null},"repo_metadata":{"uuid":"561495326","full_name":"liquibase-github-actions/migrate-sql","owner":"liquibase-github-actions","description":"Official GitHub Action to run Liquibase Migrate Sql","archived":false,"fork":false,"pushed_at":"2023-08-03T14:37:18.000Z","size":43,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2023-08-03T15:56:47.462Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/liquibase-github-actions.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-11-03T20:21:16.000Z","updated_at":"2023-08-03T15:56:47.462Z","dependencies_parsed_at":"2023-02-10T15:31:28.331Z","dependency_job_id":null,"html_url":"https://github.com/liquibase-github-actions/migrate-sql","commit_stats":{"total_commits":6,"total_committers":1,"mean_commits":6.0,"dds":0.0,"last_synced_commit":"ec5dc6303e548f6216376f324a8ae51396fd0ad0"},"previous_names":[],"tags_count":11,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/liquibase-github-actions","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":150377944,"owners_count":6823062,"icon_url":"https://github.com/github.png","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"},"owner_record":{"login":"liquibase-github-actions","name":"Liquibase GitHub Actions","uuid":"115735150","kind":"organization","description":"Liquibase Actions for the GitHub Actions Marketplace","email":"answers@liquibase.org","website":"https://liquibase.com","location":"United States of America","twitter":null,"company":null,"icon_url":"https://avatars.githubusercontent.com/u/115735150?v=4","repositories_count":65,"last_synced_at":"2023-04-14T20:38:07.879Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/liquibase-github-actions","created_at":"2023-04-14T20:38:07.892Z","updated_at":"2023-04-14T20:38:07.892Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/liquibase-github-actions","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/liquibase-github-actions/repositories"},"tags":[{"name":"v4.23.0","sha":"23660cc090b8113e7b375fe6329860d7a02175eb","kind":"commit","published_at":"2023-06-26T20:08:08.000Z","download_url":"https://codeload.github.com/liquibase-github-actions/migrate-sql/tar.gz/v4.23.0","html_url":"https://github.com/liquibase-github-actions/migrate-sql/releases/tag/v4.23.0","dependencies_parsed_at":"2023-07-02T04:39:35.882Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.23.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.23.0/manifests"},{"name":"v4.22.0","sha":"5a609b8b6d5742310802a8e8a835ed7e9afe859d","kind":"commit","published_at":"2023-05-12T22:58:39.000Z","download_url":"https://codeload.github.com/liquibase-github-actions/migrate-sql/tar.gz/v4.22.0","html_url":"https://github.com/liquibase-github-actions/migrate-sql/releases/tag/v4.22.0","dependencies_parsed_at":"2023-06-02T00:25:59.434Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.22.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.22.0/manifests"},{"name":"v4.21.1","sha":"2bde1d8dd27b9044f2c73f4bf64eb9ff59983757","kind":"commit","published_at":"2023-04-14T19:59:12.000Z","download_url":"https://codeload.github.com/liquibase-github-actions/migrate-sql/tar.gz/v4.21.1","html_url":"https://github.com/liquibase-github-actions/migrate-sql/releases/tag/v4.21.1","dependencies_parsed_at":"2023-06-02T00:25:58.988Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.21.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.21.1/manifests"},{"name":"v4.21.0","sha":"9299415b893b7136a426d760f521608fc3e19f86","kind":"commit","published_at":"2023-04-14T19:48:12.000Z","download_url":"https://codeload.github.com/liquibase-github-actions/migrate-sql/tar.gz/v4.21.0","html_url":"https://github.com/liquibase-github-actions/migrate-sql/releases/tag/v4.21.0","dependencies_parsed_at":"2023-06-02T00:25:59.666Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.21.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.21.0/manifests"},{"name":"v4.20.0","sha":"55c017f20313896e6fe2970e326b7cb5b21255b4","kind":"commit","published_at":"2023-03-09T17:45:26.000Z","download_url":"https://codeload.github.com/liquibase-github-actions/migrate-sql/tar.gz/v4.20.0","html_url":"https://github.com/liquibase-github-actions/migrate-sql/releases/tag/v4.20.0","dependencies_parsed_at":"2023-06-02T00:25:59.157Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.20.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.20.0/manifests"},{"name":"v4.19.1","sha":"ec5dc6303e548f6216376f324a8ae51396fd0ad0","kind":"commit","published_at":"2023-03-01T18:42:13.000Z","download_url":"https://codeload.github.com/liquibase-github-actions/migrate-sql/tar.gz/v4.19.1","html_url":"https://github.com/liquibase-github-actions/migrate-sql/releases/tag/v4.19.1","dependencies_parsed_at":"2023-06-02T00:25:59.776Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.19.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.19.1/manifests"},{"name":"v4.19.0","sha":"8483921343243aea27d5f44256d4f44eeed5d5b2","kind":"commit","published_at":"2023-01-18T14:13:54.000Z","download_url":"https://codeload.github.com/liquibase-github-actions/migrate-sql/tar.gz/v4.19.0","html_url":"https://github.com/liquibase-github-actions/migrate-sql/releases/tag/v4.19.0","dependencies_parsed_at":"2023-06-02T00:25:57.626Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.19.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.19.0/manifests"},{"name":"v4.18.0","sha":"c9a635796c054e50131aadad4c512b92efdd3b34","kind":"commit","published_at":"2022-12-08T16:54:25.000Z","download_url":"https://codeload.github.com/liquibase-github-actions/migrate-sql/tar.gz/v4.18.0","html_url":"https://github.com/liquibase-github-actions/migrate-sql/releases/tag/v4.18.0","dependencies_parsed_at":"2023-06-01T11:59:51.984Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.18.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.18.0/manifests"},{"name":"v4.17.2","sha":"300f6a4bb3bb1eed517065e345e241a3404a737f","kind":"commit","published_at":"2022-11-04T19:39:13.000Z","download_url":"https://codeload.github.com/liquibase-github-actions/migrate-sql/tar.gz/v4.17.2","html_url":"https://github.com/liquibase-github-actions/migrate-sql/releases/tag/v4.17.2","dependencies_parsed_at":"2023-06-01T11:59:52.268Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.17.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.17.2/manifests"},{"name":"v4.17.1","sha":"5befb2f95e588a6a69692ff4df1170fd83df4514","kind":"commit","published_at":"2022-11-04T19:06:38.000Z","download_url":"https://codeload.github.com/liquibase-github-actions/migrate-sql/tar.gz/v4.17.1","html_url":"https://github.com/liquibase-github-actions/migrate-sql/releases/tag/v4.17.1","dependencies_parsed_at":"2023-06-01T11:59:52.564Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.17.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.17.1/manifests"},{"name":"v4.17.0","sha":"0ad342cba1d5b41b6998cd36821517a7af91bec1","kind":"commit","published_at":"2022-11-03T21:05:12.000Z","download_url":"https://codeload.github.com/liquibase-github-actions/migrate-sql/tar.gz/v4.17.0","html_url":"https://github.com/liquibase-github-actions/migrate-sql/releases/tag/v4.17.0","dependencies_parsed_at":"2023-06-01T11:59:52.877Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liquibase-github-actions%2Fmigrate-sql/tags/v4.17.0/manifests"}]},"repo_metadata_updated_at":"2023-08-03T16:08:08.575Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":0,"rankings":{"downloads":null,"dependent_repos_count":42.858974907023466,"dependent_packages_count":0.0,"stargazers_count":49.38656863164194,"forks_count":23.73787030308212,"average":28.995853460436884},"purl":"pkg:githubactions/liquibase-github-actions/migrate-sql","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/liquibase-github-actions/migrate-sql","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/liquibase-github-actions/migrate-sql","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/liquibase-github-actions/migrate-sql/dependencies","status":"removed","funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2023-08-09T08:06:54.096Z","issues_count":0,"pull_requests_count":0,"avg_time_to_close_issue":null,"avg_time_to_close_pull_request":null,"issues_closed_count":0,"pull_requests_closed_count":0,"pull_request_authors_count":0,"issue_authors_count":0,"avg_comments_per_issue":null,"avg_comments_per_pull_request":null,"merged_pull_requests_count":0,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":0,"past_year_pull_requests_count":0,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":null,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":0,"past_year_pull_request_authors_count":0,"past_year_issue_authors_count":0,"past_year_avg_comments_per_issue":null,"past_year_avg_comments_per_pull_request":null,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":0},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/liquibase-github-actions%2Fmigrate-sql/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/liquibase-github-actions%2Fmigrate-sql/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/liquibase-github-actions%2Fmigrate-sql/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/liquibase-github-actions%2Fmigrate-sql/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/liquibase-github-actions%2Fmigrate-sql/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/liquibase-github-actions%2Fmigrate-sql/codemeta","maintainers":[]}