From a0110a77ec44f8d075f7bfce439fdfb35ca362b9 Mon Sep 17 00:00:00 2001 From: Ishita Chawla <84702817+ishitachawla@users.noreply.github.com> Date: Mon, 21 Jun 2021 16:19:31 +0530 Subject: [PATCH] Create auto-triage-issues (#120) * Create auto-triage-issues * Update auto-triage-issues * Update auto-triage-issues --- .github/workflows/auto-triage-issues | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/auto-triage-issues diff --git a/.github/workflows/auto-triage-issues b/.github/workflows/auto-triage-issues new file mode 100644 index 00000000..ae9926af --- /dev/null +++ b/.github/workflows/auto-triage-issues @@ -0,0 +1,21 @@ +name: "Auto-Labelling Issues" +on: + issues: + types: [opened, edited] + +jobs: + auto_label: + runs-on: ubuntu-latest + name: Auto-Labelling Issues + steps: + - name: Label Step + uses: larrylawl/Auto-Github-Issue-Labeller@v1.0 + with: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + REPOSITORY: ${{github.repository}} + DELTA: "7" + CONFIDENCE: "2" + FEATURE: "enhancement" + BUG: "bug" + DOCS: "documentation" +