From 233f8ec4d161e7c818ae3a6432a6d38cf8be7cb8 Mon Sep 17 00:00:00 2001 From: Christine Belzie <105683440+CBID2@users.noreply.github.com> Date: Wed, 3 Jan 2024 12:33:00 -0500 Subject: [PATCH] feat: add repo-rater feature --- .github/workflows/repo-rate.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/repo-rate.yml diff --git a/.github/workflows/repo-rate.yml b/.github/workflows/repo-rate.yml new file mode 100644 index 0000000..2894edf --- /dev/null +++ b/.github/workflows/repo-rate.yml @@ -0,0 +1,21 @@ +name: repo-rater +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 + with: + github-token: ${{ secrets.GITHUB_TOKEN }}