Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/uhyo/please-star-first
GitHub Action that automatically closes issues opened by non-stargazers
https://github.com/uhyo/please-star-first
actions
Last synced: about 7 hours ago
JSON representation
GitHub Action that automatically closes issues opened by non-stargazers
- Host: GitHub
- URL: https://github.com/uhyo/please-star-first
- Owner: uhyo
- License: mit
- Created: 2020-12-01T08:14:21.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-12-24T12:10:22.000Z (18 days ago)
- Last Synced: 2025-01-04T16:18:32.795Z (7 days ago)
- Topics: actions
- Language: JavaScript
- Homepage:
- Size: 658 KB
- Stars: 127
- Watchers: 3
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - uhyo/please-star-first - GitHub Action that automatically closes issues opened by non-stargazers (JavaScript)
README
# Please Star First GitHub Action
This GitHub Action automatically closes issues opened by non-stargazers.
**Feel free to try out in this repository!**
## Usage
```yml
on:
issues:
types: [opened, reopened]jobs:
greet:
runs-on: ubuntu-latest
name: Close issue opened by non-stargazer
steps:
- name: close
uses: uhyo/please-star-first@v2
```### Options
This action works out of the box, but you can customize the issue comment posted by GitHub Actions upon closing the issue by setting the `message` input.
Also, you can change the close reason by setting the `close_reason` input. The default is `not_planned`.
Example with options:
```yaml
- name: close
uses: uhyo/please-star-first@v2
with:
message: |
Your kind message on why you want them to star the repository
before opening an issue.
close_reason: completed # or "not_planned"
```