From 8d94edaaa06383a1b2ac8f71c8463889bcd15f0c Mon Sep 17 00:00:00 2001 From: hedara90 <90hedara@gmail.com> Date: Fri, 28 Mar 2025 21:21:17 +0100 Subject: [PATCH] Added workflow for labels check (#6488) Co-authored-by: Hedara --- .github/workflows/labels.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/labels.yml diff --git a/.github/workflows/labels.yml b/.github/workflows/labels.yml new file mode 100644 index 0000000000..a9198fbff3 --- /dev/null +++ b/.github/workflows/labels.yml @@ -0,0 +1,27 @@ +name: Labels + +on: + pull_request: + types: [opened, labeled, unlabeled] + +jobs: + label: + runs-on: ubuntu-latest + steps: + - name: check labels + uses: mheap/github-action-required-labels@v5 + with: + mode: minimum + count: 1 + labels: | + General + category: ability + category: battle-ai + category: battle-mechanic + category: battle-tests + category: items + category: move animation + category: move effect + category: overworld + category: pokemon + category: sprite-issue