-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix some evcc issues #10
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.
Comments suppressed due to low confidence (3)
pkg/cmd/evcc/evcc.go:98
- The comment 'use fallback from middleware' is missing a space after the '//'. It should be 'use fallback from middleware'.
//use fallback from middleware
pkg/cmd/evcc/evcc.go:121
- [nitpick] The variable name 'current' is ambiguous. It should be renamed to 'chargePower' for better clarity.
current, err := evseService.CurrentChargePower()
pkg/cmd/evcc/evcc.go:157
- The comment 'change 16 -> 16000' is unclear. It should explain that the current is being converted from amperes to milliamperes.
//change 16 -> 16000
commit_groups: | ||
title_maps: | ||
chore: Chores | ||
ci: Continous Integration |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The term 'Continous Integration' should be corrected to 'Continuous Integration'.
ci: Continous Integration | |
ci: Continuous Integration |
Copilot is powered by AI, so mistakes are possible. Review output carefully before use.
@@ -33,24 +33,41 @@ jobs: | |||
release: | |||
name: Create Release | |||
runs-on: 'ubuntu-latest' | |||
needs: test | |||
needs: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The 'needs' key is not correctly indented. It should be a list, but it's currently an object. This could cause issues with the workflow. Correct indentation should be:
needs:
- test
Copilot is powered by AI, so mistakes are possible. Review output carefully before use.
Fix some issues at the evcc enable command
Add new github action release generation