|
| 1 | +name: Add unable-to-reproduce comment |
| 2 | +on: |
| 3 | + issues: |
| 4 | + types: |
| 5 | + - labeled |
| 6 | + |
| 7 | +permissions: |
| 8 | + issues: write |
| 9 | + |
| 10 | +jobs: |
| 11 | + add-comment-to-unable-to-reproduce-issues: |
| 12 | + if: github.event.label.name == 'unable-to-reproduce' |
| 13 | + 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. |
| 23 | +
|
| 24 | +
|
| 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" |
0 commit comments