https://github.com/austenstone/activity
GitHub activity. Find inactive or dormant users
https://github.com/austenstone/activity
github utility
Last synced: 3 months ago
JSON representation
GitHub activity. Find inactive or dormant users
- Host: GitHub
- URL: https://github.com/austenstone/activity
- Owner: austenstone
- License: mit
- Created: 2024-09-23T13:40:02.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-20T03:45:27.000Z (over 1 year ago)
- Last Synced: 2025-03-19T03:34:02.364Z (over 1 year ago)
- Topics: github, utility
- Language: TypeScript
- Homepage:
- Size: 2.22 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- 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).