-
-
Notifications
You must be signed in to change notification settings - Fork 65
30 lines (24 loc) · 1.23 KB
/
issue_question.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: Issue Question
on:
issues:
types: [labeled]
jobs:
create-comment:
runs-on: ubuntu-latest
if: github.event.label.name == 'question'
steps:
- name: Create comment
uses: actions-cool/[email protected]
with:
actions: "create-comment"
token: ${{ secrets.ISSUSE_TOKEN }}
issue-number: ${{ github.event.issue.number }}
body: |
Hello! 👋
Thank you for submitting your question. To ensure we can provide the best answer possible, could you please confirm you've provided the following details:
- A clear and concise description of your question.
- Any relevant code snippets or links to your project.
- What you've tried so far in attempting to solve your issue.
In the meantime, you might find the answer to your question in our [FAQs](https://solitude-docs.efu.me/faq) or [documentation](https://solitude-docs.efu.me/).
We aim to respond to questions within 48 hours. If your question is urgent, please consider reaching out through our support channels.
Thanks again for reaching out, and we look forward to assisting you!