Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ inputs:
bot_id:
description: "GitHub user ID to use for git operations (defaults to Claude's bot ID)"
required: false
default: "41898282" # Claude's bot ID - see src/github/constants.ts
default: "209825114" # claude[bot] ID - see src/github/constants.ts
bot_name:
description: "GitHub username to use for git operations (defaults to Claude's bot name)"
required: false
Expand Down
3 changes: 2 additions & 1 deletion src/github/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@

/**
* Claude App bot user ID
* Verified via: curl -s https://api.github.com/users/claude%5Bbot%5D | jq .id
*/
export const CLAUDE_APP_BOT_ID = 41898282;
export const CLAUDE_APP_BOT_ID = 209825114;

/**
* Claude bot username
Expand Down