From dbef89671963c1a5a3f4a6e505f8d4af12d886ee Mon Sep 17 00:00:00 2001 From: Alex Goodman Date: Wed, 25 Sep 2024 11:27:15 -0400 Subject: [PATCH] add awaiting response management (#494) Signed-off-by: Alex Goodman --- .github/workflows/remove-awaiting-response-label.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/remove-awaiting-response-label.yaml diff --git a/.github/workflows/remove-awaiting-response-label.yaml b/.github/workflows/remove-awaiting-response-label.yaml new file mode 100644 index 00000000..0f3b50c4 --- /dev/null +++ b/.github/workflows/remove-awaiting-response-label.yaml @@ -0,0 +1,11 @@ +name: "Manage Awaiting Response Label" + +on: + issue_comment: + types: [created] + +jobs: + run: + uses: "anchore/workflows/.github/workflows/remove-awaiting-response-label.yaml@main" + secrets: + token: ${{ secrets.OSS_PROJECT_GH_TOKEN }}