Skip to content

Commit 42d4176

Browse files
abueideclaude
andcommitted
feat: add weekly devbox update workflow
- Use xiaolutech/devbox-update-action for automated updates - Runs weekly on Mondays at 10am UTC - Can be manually triggered - Automatically creates PRs with package updates Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 9ae1570 commit 42d4176

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Devbox Update
2+
3+
on:
4+
# Weekly schedule - Monday 10am UTC
5+
schedule:
6+
- cron: '0 10 * * 1'
7+
8+
# Manual trigger
9+
workflow_dispatch:
10+
11+
concurrency:
12+
group: devbox-update-${{ github.ref }}
13+
cancel-in-progress: true
14+
15+
jobs:
16+
update:
17+
name: Update Devbox Dependencies
18+
runs-on: ubuntu-latest
19+
permissions:
20+
contents: write
21+
pull-requests: write
22+
steps:
23+
- uses: actions/checkout@v4
24+
25+
- name: Install devbox
26+
uses: jetify-com/devbox-install-action@v0.14.0
27+
28+
- name: Update devbox packages
29+
uses: xiaolutech/devbox-update-action@v1
30+
with:
31+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)