Skip to content

Commit 6685b26

Browse files
authored
chore: fix prettier formatting (#1171)
1 parent 5150ea9 commit 6685b26

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docs/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
| `bot_id` | GitHub user ID to use for git operations (defaults to Claude's bot ID). Required with `ssh_signing_key` for verified commits | No | `41898282` |
7878
| `bot_name` | GitHub username to use for git operations (defaults to Claude's bot name). Required with `ssh_signing_key` for verified commits | No | `claude[bot]` |
7979
| `include_comments_by_actor` | Comma-separated list of actor usernames to INCLUDE in comments. Supports the `*[bot]` wildcard to match all bot accounts. Empty (default) includes all actors | No | "" |
80-
| `exclude_comments_by_actor` | Comma-separated list of actor usernames to EXCLUDE from comments. Supports the `*[bot]` wildcard to match all bot accounts. If an actor matches both lists, exclusion takes priority | No | "" |
80+
| `exclude_comments_by_actor` | Comma-separated list of actor usernames to EXCLUDE from comments. Supports the `*[bot]` wildcard to match all bot accounts. If an actor matches both lists, exclusion takes priority | No | "" |
8181
| `allowed_bots` | Comma-separated list of allowed bot usernames, or '\*' to allow all bots. Empty string (default) allows no bots. **⚠️ On public repos with `'*'`, external Apps may be able to invoke this action.** See [Security](./security.md) | No | "" |
8282
| `allowed_non_write_users` | **⚠️ RISKY**: Comma-separated list of usernames to allow without write permissions, or '\*' for all users. Only works with `github_token` input. See [Security](./security.md) | No | "" |
8383
| `path_to_claude_code_executable` | Optional path to a custom Claude Code executable. Skips automatic installation. Useful for Nix, custom containers, or specialized environments | No | "" |

test/validate-branch-name.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ describe("validateBranchName", () => {
4040
it("should accept branch names containing # (git-valid, common in issue-linked branches)", () => {
4141
// Reported in #1137: branches like "put-back-arm64-#2" were rejected
4242
expect(() => validateBranchName("put-back-arm64-#2")).not.toThrow();
43-
expect(() => validateBranchName("feature/#123-description")).not.toThrow();
43+
expect(() =>
44+
validateBranchName("feature/#123-description"),
45+
).not.toThrow();
4446
expect(() => validateBranchName("fix/issue-#42")).not.toThrow();
4547
});
4648
});

0 commit comments

Comments
 (0)