diff --git a/.github/workflows/issue-labeled.yml b/.github/workflows/issue-labeled.yml index 81b016df2..a10924ea4 100644 --- a/.github/workflows/issue-labeled.yml +++ b/.github/workflows/issue-labeled.yml @@ -51,4 +51,17 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} issue-number: ${{ github.event.issue.number }} labels: 'Resolution: Invalid' - comment: 'This issue is closed because it is invalid.' \ No newline at end of file + comment: 'This issue is closed because it is invalid.' + + to-be-discuss: + runs-on: ubuntu-latest + steps: + - name: Reply Issue + if: "${{ github.event.label.name == 'Resolution: To Be Discuss'}}" + uses: actions-cool/issues-helper@v3 + with: + actions: 'create-comment' + token: ${{ secrets.GITHUB_TOKEN }} + issue-number: ${{ github.event.issue.number }} + body: | + Thanks for reporting this issue! We need to discuss this issue with the team, we will update the status of this issue as soon as possible. \ No newline at end of file