-
-
Notifications
You must be signed in to change notification settings - Fork 337
68 lines (61 loc) · 1.76 KB
/
update-deps.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
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:
android:
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
with:
path: scripts/update-android.sh
name: Android SDK
pr-strategy: update
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}
cocoa:
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
with:
path: scripts/update-cocoa.sh
name: Cocoa SDK
pr-strategy: update
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}
javascript:
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
with:
path: scripts/update-javascript.sh
name: JavaScript SDK
pr-strategy: update
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}
wizard:
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
with:
path: scripts/update-wizard.sh
name: Wizard
pr-strategy: update
changelog-entry: false
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}
cli:
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
with:
path: scripts/update-cli.sh
name: CLI
pr-strategy: update
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}
sample-rn:
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
with:
path: scripts/update-rn.sh
name: React Native
pattern: '^v[0-9.]+$' # only match non-preview versions, also ignores "latest"
pr-strategy: update
changelog-entry: false
secrets:
api-token: ${{ secrets.CI_DEPLOY_KEY }}