just a website
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #25 from rorsome/wee-owl-tan-677

Change runner for github actions

authored by

Rory Lawless and committed by
GitHub
281fc6f2 848b6580

+12 -14
+6 -6
.github/workflows/claude-code-review.yml
··· 2 2 3 3 on: 4 4 pull_request: 5 - types: [opened, synchronize, ready_for_review, reopened] 5 + types: [ opened, synchronize, ready_for_review, reopened ] 6 6 # Optional: Only run on specific file changes 7 7 # paths: 8 8 # - "src/**/*.ts" ··· 18 18 # github.event.pull_request.user.login == 'new-developer' || 19 19 # github.event.pull_request.author_association == 'FIRST_TIME_CONTRIBUTOR' 20 20 21 - runs-on: blacksmith-4vcpu-ubuntu-2404-arm 21 + runs-on: blacksmith-4vcpu-ubuntu-2404 22 22 permissions: 23 23 contents: read 24 24 pull-requests: read ··· 36 36 uses: anthropics/claude-code-action@v1 37 37 with: 38 38 claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} 39 - plugin_marketplaces: 'https://github.com/anthropics/claude-code.git' 40 - plugins: 'code-review@claude-code-plugins' 41 - prompt: '/code-review:code-review ${{ github.repository }}/pull/${{ github.event.pull_request.number }}' 39 + plugin_marketplaces: "https://github.com/anthropics/claude-code.git" 40 + plugins: "code-review@claude-code-plugins" 41 + prompt: "/code-review:code-review ${{ github.repository }}/pull/${{ 42 + github.event.pull_request.number }}" 42 43 # See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md 43 44 # or https://code.claude.com/docs/en/cli-reference for available options 44 -
+5 -7
.github/workflows/claude.yml
··· 2 2 3 3 on: 4 4 issue_comment: 5 - types: [created] 5 + types: [ created ] 6 6 pull_request_review_comment: 7 - types: [created] 7 + types: [ created ] 8 8 issues: 9 - types: [opened, assigned] 9 + types: [ opened, assigned ] 10 10 pull_request_review: 11 - types: [submitted] 11 + types: [ submitted ] 12 12 13 13 jobs: 14 14 claude: ··· 17 17 (github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) || 18 18 (github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) || 19 19 (github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude'))) 20 - runs-on: blacksmith-4vcpu-ubuntu-2404-arm 20 + runs-on: blacksmith-4vcpu-ubuntu-2404 21 21 permissions: 22 22 contents: read 23 23 pull-requests: read ··· 39 39 # This is an optional setting that allows Claude to read CI results on PRs 40 40 additional_permissions: | 41 41 actions: read 42 - 43 42 # Optional: Give a custom prompt to Claude. If this is not specified, Claude will perform the instructions specified in the comment that tagged it. 44 43 # prompt: 'Update the pull request description to include a summary of changes.' 45 44 ··· 47 46 # See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md 48 47 # or https://code.claude.com/docs/en/cli-reference for available options 49 48 # claude_args: '--allowed-tools Bash(gh pr:*)' 50 -
+1 -1
.github/workflows/deploy.yml
··· 13 13 - ".claude/**" 14 14 jobs: 15 15 deploy: 16 - runs-on: blacksmith-4vcpu-ubuntu-2404-arm 16 + runs-on: blacksmith-4vcpu-ubuntu-2404 17 17 steps: 18 18 - name: Check out repository 19 19 uses: actions/checkout@v6