diff --git a/.github/workflows/sync-release-notes.yml b/.github/workflows/sync-release-notes.yml index e4401e6..fd39a03 100644 --- a/.github/workflows/sync-release-notes.yml +++ b/.github/workflows/sync-release-notes.yml @@ -48,6 +48,11 @@ jobs: echo "Changes detected in CHANGELOG.md" fi + - name: Ensure on main branch + if: steps.changes.outputs.changed == 'true' + run: | + git checkout main + - name: Commit and push changes if: steps.changes.outputs.changed == 'true' run: | diff --git a/SUPPORT.md b/SUPPORT.md index beea595..13fd943 100644 --- a/SUPPORT.md +++ b/SUPPORT.md @@ -15,6 +15,13 @@ When creating a new issue, please include the following information to help us u - **Operating System**: Windows, macOS, or Linux with version - **Issue Description**: Clear description of what's happening vs. what you expected +Use the "Diagnostic Report" feature in the extension to gather relevant system and extension information. This can be accessed via the details page. + +## Seen before +We have seen before that there are no sessions and tokens being reported. In that case, try out to enable the "Copilot Chat Debug View": + +![Screenshot showing how to reach the chat debug view, by going to the ... icon in the Copilot chat interface and choosing "Show chat debug view"](./docs/images/Chat%20debug%20view.png) + ### Helpful Details - **Steps to Reproduce**: Detailed steps to recreate the issue @@ -27,9 +34,9 @@ When creating a new issue, please include the following information to help us u Before reporting, please check if your issue is related to these known limitations mentioned in the README: - Numbers are based on local log files only (multi-machine usage not tracked) -- Premium Requests are not tracked -- Token counts are estimates based on character count -- Extension currently tested primarily on Windows +- Premium Request Units are not tracked by this extension, only their token usage is included +- Token counts are estimates based on character count from the chat sessions stored on disk +- Extension currently tested primarily on Windows, found something? Report an issue in the repo: https://github.com/rajbos/github-copilot-token-usage ## Feature Requests diff --git a/docs/images/Chat debug view.png b/docs/images/Chat debug view.png new file mode 100644 index 0000000..2b8131b Binary files /dev/null and b/docs/images/Chat debug view.png differ