Skip to content

Commit f7cc390

Browse files
committed
chore: rename action to allow release to marketplace
1 parent e0e1a9e commit f7cc390

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
This composite action bundles your external `.ts` files with **esbuild** into a single ESM module and then executes them through `github-script`, returning the result as a step output.
55

66
- ✅ Write CI logic in **TypeScript** (great editor DX).
7-
-**Bundle** deps (e.g., `axios`, [`github-typescript-utils`](https://www.npmjs.com/package/github-typescript-utils)) — no runtime installs needed after build.
7+
-**Bundle** deps (e.g., `axios`, [`github-typescript-utils`](https://www.npmjs.com/package/github-typescript-utils) for GitHub Actions utilities) — no runtime installs needed after build.
88
-**Fast** (esbuild) + optional **bundle caching**.
99
- ✅ Mirrors key **`github-script` inputs** like `github-token`, `result-encoding`, `retries`, etc.
1010
- ✅ Lets you **choose the Node target** for bundling (e.g., 20/22).
@@ -336,7 +336,7 @@ Cache key factors:
336336
A: No. After bundling, `github-script` imports a single `out.mjs` bundle.
337337

338338
**Q: Can I share common helpers across repos?**
339-
A: Yes—publish a small ESM utils package (e.g., [`github-typescript-utils`](https://www.npmjs.com/package/github-typescript-utils)) and install it in the repo/sub‑package. The wrapper will bundle it.
339+
A: Yes—publish a small ESM utils package (e.g., [`github-typescript-utils`](https://www.npmjs.com/package/github-typescript-utils) for GitHub Actions workflow utilities) and install it in the repo/sub‑package. The wrapper will bundle it.
340340

341341
**Q: Does this replace `actions/github-script`?**
342342
A: No. It wraps it, so you keep Octokit/context ergonomics and its features (retries, result encoding, etc.).

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
name: github-typescript
1+
name: GitHub Script TypeScript Wrapper
22
description: Build a TS script and run it via actions/github-script, returning its result
33
author: tkstang
44
branding:
5-
color: purple
5+
color: blue
66
icon: play
77

88
inputs:

0 commit comments

Comments
 (0)