From 4f7548020c0cd3eaed4466ce184727b1faee3680 Mon Sep 17 00:00:00 2001 From: shubham-fyle Date: Fri, 20 Sep 2024 21:00:51 +0530 Subject: [PATCH] Updated .github/workflows/pr_size.yml --- .github/workflows/pr_size.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/pr_size.yml diff --git a/.github/workflows/pr_size.yml b/.github/workflows/pr_size.yml new file mode 100644 index 0000000..b4a4ef7 --- /dev/null +++ b/.github/workflows/pr_size.yml @@ -0,0 +1,21 @@ +name: Pull Request Labeling + +on: [pull_request] + +jobs: + size: + runs-on: ubuntu-latest + name: Label the PR size + steps: + - uses: "pascalgn/size-label-action@v0.4.3" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + sizes: > + { + "0": "XS", + "20": "S", + "50": "M", + "250": "L", + "800": "XL" + }