From c1cec2a4274f1a295652f9611884862c2b641f35 Mon Sep 17 00:00:00 2001 From: Matus Kasak Date: Mon, 22 Jun 2026 09:57:25 +0200 Subject: [PATCH] Autolabel for new issues --- .github/workflows/new_issue_label.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/new_issue_label.yml diff --git a/.github/workflows/new_issue_label.yml b/.github/workflows/new_issue_label.yml new file mode 100644 index 000000000000..e9fcf70ae6c9 --- /dev/null +++ b/.github/workflows/new_issue_label.yml @@ -0,0 +1,18 @@ +name: Auto Label New Issues + +on: + issues: + types: [opened] + +jobs: + label-issue: + runs-on: ubuntu-latest + permissions: + issues: write + + steps: + - name: Auto Label + uses: dataquest-dev/gh-actions/start@main + + with: + github-token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file