Skip to content

Commit c82c2c8

Browse files
dependabot[bot]jamesrwebclaude
authored
🧹 chore(deps-dev): Bump the development-dependencies group with 2 updates (#565)
* 🧹 chore(deps-dev): Bump the development-dependencies group with 2 updates Bumps the development-dependencies group with 2 updates: [happy-dom](https://github.com/capricorn86/happy-dom) and [typescript](https://github.com/microsoft/TypeScript). Updates `happy-dom` from 20.8.4 to 20.8.9 - [Release notes](https://github.com/capricorn86/happy-dom/releases) - [Commits](capricorn86/happy-dom@v20.8.4...v20.8.9) Updates `typescript` from 5.9.3 to 6.0.2 - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](microsoft/TypeScript@v5.9.3...v6.0.2) --- updated-dependencies: - dependency-name: happy-dom dependency-version: 20.8.9 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: development-dependencies - dependency-name: typescript dependency-version: 6.0.2 dependency-type: direct:development update-type: version-update:semver-major dependency-group: development-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * fix(ts6): Remove deprecated baseUrl and restrict dependabot to minor/patch updates TypeScript 6 deprecated `baseUrl` - replaced with relative `./` prefixed paths which work without it. Also updated dependabot to ignore all major version updates across all ecosystems to prevent future breakage. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix(claude): Use OAuth token and enable assignee trigger for PRs and issues Switched from anthropic_api_key to claude_code_oauth_token to match the stored secret type. Added pull_request assigned event and assignee_trigger so Claude can be assigned directly to PRs and issues. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix(claude): Revert to anthropic_api_key parameter The claude_code_oauth_token parameter is for Max plan OAuth tokens. Reverted to anthropic_api_key which accepts standard API keys. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix(claude): Use ANTHROPIC_API_KEY org secret Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix(claude): Set assignee_trigger to claude[bot] The Claude GitHub App's bot username is claude[bot], not claude. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix(claude): Use pull_request_target for PR assignment trigger pull_request event requires the workflow to match the default branch. pull_request_target runs from the base branch and is supported by claude-code-action for the same purpose. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: James Robb <47126579+jamesrweb@users.noreply.github.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 364bef7 commit c82c2c8

5 files changed

Lines changed: 288 additions & 362 deletions

File tree

‎.github/dependabot.yml‎

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ updates:
1818
patterns:
1919
- "*"
2020
ignore:
21-
- dependency-name: "react"
22-
update-types: ["version-update:semver-major"]
23-
- dependency-name: "react-dom"
21+
- dependency-name: "*"
2422
update-types: ["version-update:semver-major"]
2523
commit-message:
2624
prefix: "🧹 chore"
@@ -38,6 +36,9 @@ updates:
3836
github-actions:
3937
patterns:
4038
- "*"
39+
ignore:
40+
- dependency-name: "*"
41+
update-types: ["version-update:semver-major"]
4142
commit-message:
4243
prefix: "🔧 ci"
4344
include: "scope"

‎.github/workflows/claude.yml‎

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
types: [created]
88
issues:
99
types: [opened, assigned]
10+
pull_request_target:
11+
types: [assigned]
1012
pull_request_review:
1113
types: [submitted]
1214

@@ -16,7 +18,8 @@ jobs:
1618
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) ||
1719
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||
1820
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) ||
19-
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))
21+
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude'))) ||
22+
(github.event_name == 'pull_request_target')
2023
runs-on: ubuntu-latest
2124
permissions:
2225
contents: write
@@ -34,13 +37,13 @@ jobs:
3437
id: claude
3538
uses: anthropics/claude-code-action@v1
3639
with:
37-
anthropic_api_key: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
40+
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
3841

3942
# Optional: Customize the trigger phrase (default: @claude)
4043
# trigger_phrase: "/claude"
4144

42-
# Optional: Trigger when specific user is assigned to an issue
43-
# assignee_trigger: "claude-bot"
45+
# Trigger when "claude" is assigned to an issue or PR
46+
assignee_trigger: "claude[bot]"
4447

4548
# Optional: Configure Claude's behavior with CLI arguments
4649
# claude_args: |

‎package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
"react": "19.2.4",
119119
"react-dom": "19.2.4",
120120
"rimraf": "^6.1.3",
121-
"typescript": "^5.9.3",
121+
"typescript": "^6.0.2",
122122
"typescript-eslint": "^8.57.1",
123123
"vite": "^8.0.1",
124124
"vite-plugin-dts": "^4.5.4",

0 commit comments

Comments
 (0)