17 lines
460 B
YAML
17 lines
460 B
YAML
# 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
|
|
env:
|
|
GH_TOKEN: ${{ github.token }}
|
|
steps:
|
|
- name: 'Remove stale and waiting-response on comment'
|
|
run: gh issue edit ${{ github.event.issue.html_url }} --remove-label stale,waiting-response
|