docs: add README files for all shared actions

This commit is contained in:
2026-06-13 00:59:06 -07:00
parent c44d07c87d
commit ff42edcb94
4 changed files with 78 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# Run Buildifier
Downloads and runs the Bazel buildifier tool in lint mode on Starlark files (like `BUILD.bazel`, `WORKSPACE`, `.bzl` files) to ensure they comply with standard formatting.
## Inputs
| Name | Description | Required | Default |
| :--- | :--- | :--- | :--- |
| `version` | The buildifier release version tag to download. | No | `v8.0.1` |
## Example Usage
```yaml
- name: Format Check Starlark files
uses: rodydavis/shared-actions/run-buildifier@main
with:
version: 'v8.0.1'
```