Skip to content
Merged
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: 2 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,8 @@ Use fresh GitHub data when checking issue or PR state. Prefer `gh api --cache 0s

Do not add `Co-Authored-By` or AI attribution to commit messages.

Git authors and committers must use an approved human identity (`Connor`, `ConnorQi`, or `JunchenMeteor`). Bot, automation, AI-tool, and agent identities such as `github-actions[bot]` are forbidden. Automated commits must use `JunchenMeteor <15767428+JunchenMeteor@users.noreply.github.com>`.

## Security And Secrets

Never commit or print real values for:
Expand Down
4 changes: 2 additions & 2 deletions scripts/release-manager.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ function ensureTooling() {
run('git', ['--version'])
run('gh', ['--version'])
run('curl', ['--version'])
run('git', ['config', 'user.name', 'github-actions[bot]'], { allowFail: true })
run('git', ['config', 'user.email', '41898282+github-actions[bot]@users.noreply.github.com'], { allowFail: true })
run('git', ['config', 'user.name', 'JunchenMeteor'], { allowFail: true })
run('git', ['config', 'user.email', '15767428+JunchenMeteor@users.noreply.github.com'], { allowFail: true })
}

function ensureCleanWorktree() {
Expand Down
Loading