Skip to content

Commit

Permalink
update node modules workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-garcia authored Jan 8, 2025
1 parent 71fe172 commit 09a1206
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/update-deps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Update Dependencies

on:
# Run every day.
schedule:
- cron: "0 3 * * *"
# Allow a manual trigger to be able to run the update when there are new dependencies or after a PR merge to resolve CHANGELOG conflicts.
workflow_dispatch:

jobs:
deps:
name: ${{ matrix.name }}
strategy:
fail-fast: false
matrix:
include:
- name: Native SDK
path: modules/sentry-native
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
with:
name: ${{ matrix.name }}
path: ${{ matrix.path }}
pr-strategy: update
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}

0 comments on commit 09a1206

Please sign in to comment.