@@ -11,34 +11,36 @@ jobs:
1111 add-comment-to-unable-to-reproduce-issues :
1212 if : github.event.label.name == 'unable-to-reproduce'
1313 runs-on : ubuntu-latest
14- env :
15- GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
16- GH_REPO : ${{ github.repository }}
17- NUMBER : ${{ github.event.issue.number }}
18- LABELS : more-info-needed
19- BODY : >
20- Thank you for your issue! Unfortunately, we are unable to reproduce the
21- issue you are experiencing. Please provide more information so we can
22- help you.
14+ steps :
15+ - name : Update issue
16+ env :
17+ GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
18+ GH_REPO : ${{ github.repository }}
19+ NUMBER : ${{ github.event.issue.number }}
20+ LABELS : more-info-needed
21+ BODY : >
22+ Thank you for your issue! Unfortunately, we are unable to reproduce the
23+ issue you are experiencing. Please provide more information so we can
24+ help you.
2325
2426
25- Here are some tips for writing reproduction steps:
26- - Step by step instructions accompanied by screenshots or screencasts
27- are the best.
28- - Be as specific as possible; include as much detail as you can.
29- - If not already provided, include:
30- - the version of Copilot CLI you are using.
31- - the operating system you are using
32- - any environment factors you can think of.
33- - any custom configuration you are using.
34- - a log file from the day you experienced the issue (find log
35- files via `~/.copilot/logs`.
36- - If relevant and can be shared, provide the repository or code you
37- are using.
38- - If relevant and can be shared, provide the session files (find session files via `~/.copilot/history-session-state`).
39-
40- Note: This is a public repository. Please do not include any sensitive or
41- private information in your issue.
42- steps :
43- - run : gh issue edit "$NUMBER" --add-label "$LABELS"
44- - run : gh issue comment "$NUMBER" --body "$BODY"
27+ Here are some tips for writing reproduction steps:
28+ - Step by step instructions accompanied by screenshots or screencasts
29+ are the best.
30+ - Be as specific as possible; include as much detail as you can.
31+ - If not already provided, include:
32+ - the version of Copilot CLI you are using.
33+ - the operating system you are using
34+ - any environment factors you can think of.
35+ - any custom configuration you are using.
36+ - a log file from the day you experienced the issue (find log
37+ files via `~/.copilot/logs`.
38+ - If relevant and can be shared, provide the repository or code you
39+ are using.
40+ - If relevant and can be shared, provide the session files (find session files via `~/.copilot/history-session-state`).
41+
42+ Note: This is a public repository. Please do not include any sensitive or
43+ private information in your issue.
44+ run : |
45+ gh issue edit "$NUMBER" --add-label "$LABELS"
46+ gh issue comment "$NUMBER" --body "$BODY"
0 commit comments