From 3702078206df82aab54b3f89a3304e569c049d65 Mon Sep 17 00:00:00 2001 From: simonsan <14062932+simonsan@users.noreply.github.com> Date: Thu, 14 Sep 2023 21:36:03 +0200 Subject: [PATCH] ci: add triaging of issues Signed-off-by: simonsan <14062932+simonsan@users.noreply.github.com> --- .github/workflows/triage.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/triage.yml diff --git a/.github/workflows/triage.yml b/.github/workflows/triage.yml new file mode 100644 index 000000000..bf17e7c02 --- /dev/null +++ b/.github/workflows/triage.yml @@ -0,0 +1,14 @@ +on: + issues: + types: + - opened + +jobs: + label_issue: + runs-on: ubuntu-latest + steps: + - env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + ISSUE_URL: ${{ github.event.issue.html_url }} + run: | + gh issue edit $ISSUE_URL --add-label "S-triage"