all repos — gomponents @ c9514826afafc6ae626ed77a4531712be0f41770

HTML components in pure Go

Enhance Claude with global CLAUDE.md (#274) Added steps to checkout dotfiles and prepend CLAUDE.md.

Markus Wüstenberg
commit

c9514826afafc6ae626ed77a4531712be0f41770

parent

d420152f43532efe6ef703a10f6fef1766602a98

1 file changed, 13 insertions(+), 13 deletions(-)

changed files
M .github/workflows/claude.yml.github/workflows/claude.yml
@@ -24,27 +24,27 @@ pull-requests: read
issues: read id-token: write actions: read # Required for Claude to read CI results on PRs + steps: - name: Checkout repository uses: actions/checkout@v5 with: fetch-depth: 1 + + - name: Checkout dotfiles + uses: actions/checkout@v5 + with: + repository: markuswustenberg/dotfiles + path: dotfiles + fetch-depth: 1 + + - name: Prepend organization CLAUDE.md to repo CLAUDE.md + run: | + cat dotfiles/.claude/CLAUDE.md AGENTS.md >AGENTS.md.tmp + mv AGENTS.md.tmp AGENTS.md - name: Run Claude Code id: claude uses: anthropics/claude-code-action@v1 with: claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} - - # This is an optional setting that allows Claude to read CI results on PRs - additional_permissions: | - actions: read - - # Optional: Give a custom prompt to Claude. If this is not specified, Claude will perform the instructions specified in the comment that tagged it. - # prompt: 'Update the pull request description to include a summary of changes.' - - # Optional: Add claude_args to customize behavior and configuration - # See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md - # or https://docs.anthropic.com/en/docs/claude-code/sdk#command-line for available options - # claude_args: '--model claude-opus-4-1-20250805 --allowed-tools Bash(gh pr:*)' -