Skip to content

Commit

Permalink
Merge pull request #2245 from CBID2/adding-repo-rater-github-action
Browse files Browse the repository at this point in the history
feat: add Repo-rater GitHub Action
  • Loading branch information
rupali-codes authored Feb 2, 2024
2 parents 5610a45 + f9cc28b commit 9c2b153
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/repo-rater.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Repo Rater Action
run-name: repo-rater (#${{ github.event.issue.number || github.event.pull_request.number }})

permissions:
issues: write
pull-requests: write

on:
issues:
types: [closed]
pull_request:
types: [closed]

jobs:
repo-rater:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: xkrishguptaa/action-repo-rater@v1.0.6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
message: "Thank you for contributing to LinksHub! Please take a moment to rate this repo\\'s DX on [EddieHub\\'s RepoRater](https://repo-rater.eddiehub.io/rate?owner=${{ github.repository_owner }}&name=${{ github.event.repository.name }}) and give it a star ⭐"

0 comments on commit 9c2b153

Please sign in to comment.