You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This workflow automatically posts a guidance comment on new issues.
2
+
# It provides instructions to help users submit detailed information about their
3
+
# WordPress environment and the issue they're experiencing with the Simple WP Optimizer plugin.
4
+
# This helps maintainers diagnose and fix issues more efficiently.
5
+
6
+
name: Issue Guidance
7
+
8
+
on:
9
+
issues:
10
+
types: [opened]
11
+
12
+
permissions:
13
+
contents: write
14
+
issues: write
15
+
16
+
jobs:
17
+
guide:
18
+
runs-on: ubuntu-latest
19
+
steps:
20
+
- name: Post guidance comment
21
+
uses: peter-evans/create-or-update-comment@v4
22
+
with:
23
+
issue-number: ${{ github.event.issue.number }}
24
+
body: |
25
+
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.
26
+
27
+
To help us diagnose the issue, please include:
28
+
- WordPress version
29
+
- PHP version
30
+
- List of other plugins you're using
31
+
- Steps to reproduce the issue
32
+
- What you expected to happen vs. what actually happened
0 commit comments