From 17c57aee8b2c95b89104d365c65e178cd7e135fb Mon Sep 17 00:00:00 2001 From: mhh Date: Fri, 10 Nov 2023 17:14:30 +0100 Subject: [PATCH] Add PR Difficulty Rating workflow to the .github/workflows/pr-rating.yml file. --- .github/workflows/pr-rating.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/pr-rating.yml diff --git a/.github/workflows/pr-rating.yml b/.github/workflows/pr-rating.yml new file mode 100644 index 00000000..5f802ff5 --- /dev/null +++ b/.github/workflows/pr-rating.yml @@ -0,0 +1,15 @@ +name: Test PR Difficulty Rating Action + +on: + pull_request: + types: [opened, reopened, synchronize] + +jobs: + difficulty-rating: + runs-on: ubuntu-latest + steps: + - name: PR Difficulty Rating + uses: rate-my-pr/gh-action@main + with: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + LLAMA_URL: ${{ secrets.LLAMA_URL }}