found and fixed a bug in raft integration tests #3514
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright the Hyperledger Fabric contributors. All rights reserved. | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Slash Commands | |
on: | |
issue_comment: | |
types: | |
- created | |
- edited | |
permissions: {} | |
jobs: | |
notify: | |
permissions: | |
issues: write # to comment on or close issue | |
name: Invalid Issue Usage | |
if: contains(github.event.comment.body, '/invalid') && github.event.issue.state == 'open' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Comment on Issue | |
uses: lindluni/[email protected] | |
with: | |
action: comment | |
message: | | |
Thank you for opening this issue. | |
GitHub Issues is a tool for tracking bugs, feature requests, and work in general that relates directly to the Fabric codebase. It is not for general help requests. Please use one of the following forums to request help for your issue: | |
- Discord: https://discord.com/servers/hyperledger-foundation-905194001349627914 | |
- Fabric Mailing List: [email protected] | |
- name: Close Issue | |
uses: lindluni/[email protected] | |
with: | |
action: close |