Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nhomble/mia-action
- Owner: nhomble
- License: mit
- Created: 2021-09-14T03:28:21.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-07T23:36:54.000Z (almost 3 years ago)
- Last Synced: 2024-10-31T10:39:09.624Z (about 2 months ago)
- Language: Shell
- Size: 4.88 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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: nhombleon:
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
```