mirror of
https://github.com/anthropics/claude-code-action.git
synced 2026-01-22 22:44:13 +08:00
14 lines
249 B
TypeScript
14 lines
249 B
TypeScript
/**
|
|
* GitHub-related constants used throughout the application
|
|
*/
|
|
|
|
/**
|
|
* Claude App bot user ID
|
|
*/
|
|
export const CLAUDE_APP_BOT_ID = 41898282;
|
|
|
|
/**
|
|
* GitHub Actions bot username
|
|
*/
|
|
export const GITHUB_ACTIONS_BOT_LOGIN = "github-actions[bot]";
|