https://github.com/kkrishguptaa/action-repo-rater
Get votes on EddieHub Repo Rater without lifting a finger 🌟
https://github.com/kkrishguptaa/action-repo-rater
eddiehub github-actions rating stars
Last synced: 2 months ago
JSON representation
Get votes on EddieHub Repo Rater without lifting a finger 🌟
- Host: GitHub
- URL: https://github.com/kkrishguptaa/action-repo-rater
- Owner: kkrishguptaa
- License: gpl-3.0
- Archived: true
- Created: 2023-12-28T14:26:01.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-01T21:38:39.000Z (7 months ago)
- Last Synced: 2025-03-10T11:53:01.609Z (2 months ago)
- Topics: eddiehub, github-actions, rating, stars
- Homepage: https://github.com/marketplace/actions/repo-rater-action
- Size: 60.5 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
> Sunsetted in lieu of the deprecation of RepoRater itself.
[](https://repo-rater.eddiehub.io/rate?owner=xkrishguptaa&name=action-repo-rater)
## ❓ Why `action-repo-rater`?
- 🍭 Get votes on your repository without lifting a finger
- 🐙 Automatically comment on issues and pull requests to get votes
- 🤖 Rank up on the [EddieHub Repo Rater](https://repo-rater.eddiehub.io)## 📦 Usage
### Allow github-actions to create comments
1. Go to Settings -> Actions
2. Enable `write` permission for GitHub Actions
### Creation Action File
Create a file called `.github/workflows/repo-rater.yml`
```yml
name: repo-rater
run-name: repo-rater (#${{ github.event.issue.number || github.event.pull_request.number }})permissions:
issues: write
pull-requests: writeon:
issues:
types: [closed]
pull_request:
types: [closed]jobs:
repo-rater:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: kkrishguptaa/action-repo-rater@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
```## 📝 Configuration
| Key | Description | Required | Default Value |
| ----------------- | --------------------------------------------------------------------------- | -------- | ------------- |
| github-token | The GitHub token to use for authentication, Use this if you want the comment to be posted a user rather than `github-actions` | true | Please set value as `${{ secrets.GITHUB_TOKEN }}` |
| message | The message to post on the issue or pull request | false | `Thank you all for contributing to this repo! Please take a moment to rate its DX on [EddieHub Repo Rater](https://repo-rater.eddiehub.io/rate?owner=${{ github.repository_owner }}&name=${{ github.event.repository.name }}) and star it 💓` |