From 3bec95ae1cece07946348eb6989656e483860658 Mon Sep 17 00:00:00 2001 From: Teju Gangisetty <111475372+tejugang@users.noreply.github.com> Date: Tue, 28 Jul 2026 16:10:06 -0400 Subject: [PATCH] add label via slash workflow call (#1499) Signed-off-by: Teju Gangisetty Co-authored-by: Paige Patton <64206430+paigerube14@users.noreply.github.com> --- .github/workflows/slash-to-add-label.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/slash-to-add-label.yml diff --git a/.github/workflows/slash-to-add-label.yml b/.github/workflows/slash-to-add-label.yml new file mode 100644 index 00000000..61a5473a --- /dev/null +++ b/.github/workflows/slash-to-add-label.yml @@ -0,0 +1,13 @@ +name: Label via slash + +on: + issue_comment: + types: [created] + + +jobs: + add-label: + permissions: + issues: write + pull-requests: write + uses: krkn-chaos/actions/.github/workflows/slash-to-add-label.yml@main \ No newline at end of file