-
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (27 loc) · 1.09 KB
/
new-issue.yml
File metadata and controls
32 lines (27 loc) · 1.09 KB
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
31
32
# This workflow automatically posts a guidance comment on new issues.
# It provides instructions to help users submit detailed information about their
# WordPress environment and the issue they're experiencing with the EngineScript Site Optimizer plugin.
# This helps maintainers diagnose and fix issues more efficiently.
name: Issue Guidance
on:
issues:
types: [opened]
permissions:
contents: write
issues: write
jobs:
guide:
runs-on: ubuntu-latest
steps:
- name: Post guidance comment
uses: peter-evans/create-or-update-comment@v5
with:
issue-number: ${{ github.event.issue.number }}
body: |
Thanks for opening an issue. Please provide a detailed description of the problem you're facing. If you have error messages or logs, please include them as well.
To help us diagnose the issue, please include:
- WordPress version
- PHP version
- List of other plugins you're using
- Steps to reproduce the issue
- What you expected to happen vs. what actually happened