Skip to content

Commit 53fcb47

Browse files
authored
Merge branch 'develop' into feature/GHO-112-update-create-github-app-token-v3
2 parents 1b187c3 + 7cfd26f commit 53fcb47

3 files changed

Lines changed: 25 additions & 1 deletion

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Claude Code Review
2+
3+
on:
4+
issue_comment:
5+
types: [created]
6+
7+
jobs:
8+
review:
9+
if: |
10+
github.event.issue.pull_request != null &&
11+
contains(github.event.comment.body, '@claude') &&
12+
github.event.comment.user.login == 'noahwhite'
13+
runs-on: ubuntu-latest
14+
permissions:
15+
contents: read
16+
pull-requests: write
17+
issues: write
18+
19+
steps:
20+
- uses: anthropics/claude-code-action@v1
21+
with:
22+
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}

CLAUDE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ git push origin feature/GHO-XXX-branch-name
3535

3636
**Never use** `mcp__github__push_files` or `mcp__github__create_or_update_file` for commits in this repo — they bypass local git config, produce unsigned commits, and fail with `422/409 Repository rule violations found: Commits must have verified signatures`.
3737

38+
**Never use `git stash` to carry changes across branches.** Auto-merge during `git stash pop` silently drops hunks when branches have diverged, causing changes to disappear without error. Instead, use a temp commit on the current branch, then cherry-pick or reset after switching, or use `git diff > patch.diff` / `git apply patch.diff`.
39+
3840
After pushing, open the PR with `mcp__github__create_pull_request`.
3941

4042
### PR Creation Checklist

opentofu/modules/vultr/instance/userdata/ghost-compose/compose.yml.tftpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#
1111
services:
1212
caddy:
13-
image: caddy:2.11.2-alpine@sha256:fce4f15aad23222c0ac78a1220adf63bae7b94355d5ea28eee53910624acedfa
13+
image: caddy:2.10.2-alpine@sha256:953131cfea8e12bfe1c631a36308e9660e4389f0c3dfb3be957044d3ac92d446
1414
restart: always
1515
entrypoint: ["/caddy-entrypoint.sh"]
1616
ports:

0 commit comments

Comments
 (0)