@mizchi/actrun 0.17.0 → 0.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +8 -0
  2. package/dist/actrun.js +109674 -1406
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -74,6 +74,9 @@ nix_packages = ["python312", "jq"]
74
74
  # Container runtime: docker, podman, container, lima, nerdctl
75
75
  container_runtime = "docker"
76
76
 
77
+ # Include uncommitted changes in worktree/tmp workspace
78
+ # include_dirty = true
79
+
77
80
  # Override actions with local commands
78
81
  # [override."actions/setup-node"]
79
82
  # run = "echo 'using local node' && node --version"
@@ -212,6 +215,7 @@ actrun cache prune --key <key> # Delete cache entry
212
215
  | `--container-runtime <name>` | Container runtime: `docker`, `podman`, `container`, `lima`, `nerdctl` |
213
216
  | `--affected [base]` | Only run if files matching patterns changed (see below) |
214
217
  | `--retry` | Re-run only failed jobs from the latest run |
218
+ | `--include-dirty` | Include uncommitted changes in worktree/tmp workspace |
215
219
  | `--json` | JSON output for read commands and `--dry-run` |
216
220
 
217
221
  ## Affected Runs
@@ -495,6 +499,10 @@ just gha-compat-compare compat-checkout-artifact.yml _build/gha-compat/<run-id>
495
499
  | `src/cmd/actrun/main.mbt` | CLI entry point |
496
500
  | `testdata/` | Compatibility fixtures |
497
501
 
502
+ ## Prior Art
503
+
504
+ - [actionlint](https://github.com/rhysd/actionlint) — Static checker for GitHub Actions workflow files. `actrun lint` is inspired by its rule design and type system.
505
+
498
506
  ## License
499
507
 
500
508
  Apache-2.0