Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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).