hems/fnn: productionnominalmax carries Wp (module peak) while EEBus defines ProductionNominalMax as W (AC real power) #644
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Claude Fix Command | |
| on: | |
| issue_comment: | |
| types: [created] | |
| # Triggered by a `/fix` comment on any issue or PR conversation, maintainers only. | |
| # Delegates to the shared issue agent in fix mode, which investigates, pushes a | |
| # fix branch, opens a PR, comments with the result, then minimizes the calling | |
| # `/fix` comment as RESOLVED β but only when it actually opened a PR. | |
| jobs: | |
| fix: | |
| name: Fix on demand | |
| if: | | |
| startsWith(github.event.comment.body, '/fix') && | |
| contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]'), github.event.comment.author_association) | |
| permissions: | |
| contents: write # create branch + push PR fix | |
| issues: write # comment + minimize the calling comment | |
| pull-requests: write # open PR fix, comment on PR conversations | |
| id-token: write | |
| actions: read | |
| uses: ./.github/workflows/claude-issue-agent-run.yml | |
| with: | |
| issue_number: ${{ github.event.issue.number }} | |
| mode: fix | |
| comment_id: ${{ github.event.comment.id }} | |
| comment_node_id: ${{ github.event.comment.node_id }} | |
| secrets: inherit |