This repository serves as a template for TypeScript Actions.
Create a workflow (eg: .github/workflows/seat-count.yml
). See Creating a Workflow file.
name: TypeScript Action Workflow
on:
workflow_dispatch:
jobs:
run:
name: Run Action
runs-on: ubuntu-latest
steps:
- uses: austenstone/action-typescript@main
Various inputs are defined in action.yml
:
Name | Description | Default |
---|---|---|
github‑token | Token to use to authorize. | ${{ github.token }} |
To get more help on the Actions see documentation.