-
-
Notifications
You must be signed in to change notification settings - Fork 435
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: automatic submodule dependency update (#2102)
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Update Dependencies | ||
|
||
on: | ||
# Run every day. | ||
schedule: | ||
- cron: '0 3 * * *' | ||
# And on on every PR merge so we get the updated dependencies ASAP, and to make sure the changelog doesn't conflict. | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
native: | ||
uses: getsentry/github-workflows/.github/workflows/updater.yml@v1 | ||
with: | ||
path: sentry-android-ndk/sentry-native | ||
name: Native SDK | ||
secrets: | ||
# If a custom token is used instead, a CI would be triggered on a created PR. | ||
api_token: ${{ secrets.CI_DEPLOY_KEY }} |