GitHub Actions - Elastic Cloud Control (ecctl) tool installer

I’ve published a new GitHub Action called action-setup-ecctl (View on Marketplace). The action installs a specific version of ecctl (Elastic Cloud control tool) and cache it on the runner. Usage Inputs Parameter Required Default Value Description version false latest Ecctl tool version such as v1.0.0-beta3. Ecctl vesion can be found here. Supported Environments: Linux and macOS Outputs Parameter Description ecctl-path ecctl command path Sample Workflow A specific version of ecctl can be setup by giving an input - version like this: {% raw %}...

<span title='2020-06-22 00:00:00 +0000 UTC'>June 22, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;Yoichi Kawasaki

GitHub Actions - SQLCheck Action

I’ve published a new GitHub Action called SQLCheck Action (View on Marketplace). The action automatically identifies anti-patterns in SQL queries using sqlcheck when PR is requested and comment on the PR if risks are found in the queries. Usage Supports pull_request event type. Inputs Parameter Required Default Value Description post-comment false true Post comment to PR if it’s true token true "" GitHub Token in order to add comment to PR risk-level false 3 Set of SQL anti-patterns to check: 1,2, or 3- 1 (all anti-patterns, default)- 2 (only medium and high risk anti-patterns) - 3 (only high risk anti-patterns) verbose false false Add verbose warnings to SQLCheck analysis result postfixes false “sql” List of file postfix to match ( separator: comma ) Sample Workflow ....

<span title='2020-04-30 00:00:00 +0000 UTC'>April 30, 2020</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;Yoichi Kawasaki