Skip to content

Commit 609dc5e

Browse files
committed
workflow updates
1 parent b21197c commit 609dc5e

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/claude-github-issue.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ jobs:
2323
contains(github.event.issue.body, '@claude') &&
2424
(
2525
contains(fromJSON('["OWNER","MEMBER","COLLABORATOR"]'), github.event.issue.author_association) ||
26-
github.event.issue.user.login == 'github-actions[bot]'
26+
github.event.issue.user.login == 'github-actions[bot]' ||
27+
github.event.issue.user.login == 'claude[bot]'
2728
)
2829
) ||
2930
(

.github/workflows/weekly-dependency-update.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
[ -s /tmp/outdated.json ] || echo '[]' > /tmp/outdated.json
4747
4848
- name: Upgrade dependencies
49-
run: pnpm upgrade
49+
run: npx --yes npm-check-updates --target minor -u && pnpm install
5050

5151
- name: Create PR for dependency updates
5252
env:
@@ -73,6 +73,7 @@ jobs:
7373
- name: Open issues for major version bumps
7474
uses: actions/github-script@v7
7575
with:
76+
github-token: ${{ steps.app-token.outputs.token }}
7677
script: |
7778
const fs = require('fs');
7879

0 commit comments

Comments
 (0)