Shelly Pro4PM: 429 Too Many Requests on Shelly.GetStatus/Switch.GetStatus after firmware update to 2.0.0 #3271
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, whether or not a PR was opened. | |
| 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 |