https://github.com/hacksore/must-star-action
https://github.com/hacksore/must-star-action
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/hacksore/must-star-action
- Owner: Hacksore
- License: mit
- Created: 2024-01-15T16:18:29.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-01-15T18:55:08.000Z (over 2 years ago)
- Last Synced: 2024-10-04T23:41:20.747Z (almost 2 years ago)
- Language: JavaScript
- Size: 31.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 }}
```