From 2161a1b18147711e221e65c621fea32da9b50565 Mon Sep 17 00:00:00 2001 From: Service Account - Terraform Provider DevEx <100357958+hc-github-team-tf-provider-devex@users.noreply.github.com> Date: Fri, 17 May 2024 15:09:43 -0400 Subject: [PATCH] [CI] Update issue comment triage workflow file --- .github/workflows/issue-comment-triage.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/issue-comment-triage.yml diff --git a/.github/workflows/issue-comment-triage.yml b/.github/workflows/issue-comment-triage.yml new file mode 100644 index 00000000..6c1ddccb --- /dev/null +++ b/.github/workflows/issue-comment-triage.yml @@ -0,0 +1,14 @@ +# DO NOT EDIT - This GitHub Workflow is managed by automation +# https://github.com/hashicorp/terraform-devex-repos +name: Issue Comment Triage + +on: + issue_comment: + types: [created] + +jobs: + issue_comment_triage: + runs-on: ubuntu-latest + steps: + - name: 'Remove stale and waiting-response on comment' + run: gh issue edit ${{ github.event.issue.number }} --remove-label stale,waiting-response