Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/austenstone/action-typescript
Create a TypeScript Action
https://github.com/austenstone/action-typescript
actions template typescript
Last synced: 20 days ago
JSON representation
Create a TypeScript Action
- Host: GitHub
- URL: https://github.com/austenstone/action-typescript
- Owner: austenstone
- License: mit
- Created: 2022-03-10T01:00:56.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-22T17:06:15.000Z (3 months ago)
- Last Synced: 2024-10-10T21:17:08.745Z (about 1 month ago)
- Topics: actions, template, typescript
- Language: TypeScript
- Homepage: https://github.com/features/actions
- Size: 3.5 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Action
This repository serves as a [template](https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template) for TypeScript [Actions](https://docs.github.com/en/actions).
## Usage
Create a workflow (eg: `.github/workflows/seat-count.yml`). See [Creating a Workflow file](https://help.github.com/en/articles/configuring-a-workflow#creating-a-workflow-file).#### Example
```yml
name: TypeScript Action Workflow
on:
workflow_dispatch:jobs:
run:
name: Run Action
runs-on: ubuntu-latest
steps:
- uses: austenstone/action-typescript@main
```## ➡️ Inputs
Various inputs are defined in [`action.yml`](action.yml):| Name | Description | Default |
| --- | - | - |
| github‑token | Token to use to authorize. | ${{ github.token }} |## Further help
To get more help on the Actions see [documentation](https://docs.github.com/en/actions).