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

https://github.com/hacksore/must-star-action


https://github.com/hacksore/must-star-action

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# must-star-action

This will prevent noobs from raising an issue/pr if they have not starred it. It will instantly close the issue or PR.

### example of how to use

```yaml
name: Check Stars on PRs and Issues

on:
pull_request:
types: [opened]
branches:
- "*"

issues:
types: [opened]

jobs:
comment:
runs-on: ubuntu-latest
steps:
- uses: hacksore/must-star-action@master
with:
github-token: ${{ secrets.GH_PAT }}
```