Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nhomble/mia-action

check for developers missing in action
https://github.com/nhomble/mia-action

Last synced: about 1 month ago
JSON representation

check for developers missing in action

Awesome Lists containing this project

README

        

# mia-action
check for developers missing in action

## Usage
This action provides a quick visual aide in small teams when you want quick feedback on who is actively contributing.

## Troubleshooting
When using the `actions/checkout` [GitHub action](https://github.com/actions/checkout), remember to checkout a reasonable amount of the git history. By default, the commit depth is just `1`.

### Example
```yml
name: nhomble

on:
schedule:
- cron: "0 0 * * *"
push:
branches: [ main ]

jobs:
check-mia:
runs-on: ubuntu-latest
name: mia
steps:
- name: Checkout
uses: actions/checkout@v2
- name: check for nhomble mia
uses: nhomble/[email protected]
with:
author: nhomble
days: 3
```