[Fix] channel agentId needs use integer #23
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
name: Issue Reply | |
on: | |
issues: | |
types: [labeled] | |
permissions: | |
contents: read | |
jobs: | |
reply-helper: | |
permissions: | |
issues: write # for actions-cool/issues-helper to update issues | |
pull-requests: write # for actions-cool/issues-helper to update PRs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Auto Comment on Pull Request Opened | |
uses: wow-actions/auto-comment@v1 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
pullRequestOpened: | | |
π @${{ github.event.issue.user.login }} | |
Thank you for raising your pull request and contributing to our Community | |
Please make sure you have followed our contributing guidelines. We will review it as soon as possible. | |
If you encounter any problems, please feel free to connect with us. | |
- name: feature | |
if: github.event.label.name == 'feature' || github.event.label.name == 'fix' | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'create-comment' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
π @${{ github.event.issue.user.login }} | |
Thank you for raising an issue. We will investigate into the matter and get back to you as soon as possible. | |
Please make sure you have given us as much context as possible. | |
- name: bug | |
if: github.event.label.name == 'bug' | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'create-comment' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
π @${{ github.event.issue.user.login }} | |
Thank you for raising an issue. We will investigate into the matter and get back to you as soon as possible. | |
Please make sure you have given us as much context as possible. | |
- name: question | |
if: github.event.label.name == 'question' | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'create-comment' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
π @${{ github.event.issue.user.login }} | |
Hello, We'll be happy to answer your questions. Just a moment. |