-
Notifications
You must be signed in to change notification settings - Fork 14
75 lines (74 loc) · 2.07 KB
/
schedule.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
69
70
71
72
73
74
75
on:
push:
branches:
- "master"
schedule:
- cron: "0 0 * * *"
jobs:
excavate:
name: Excavate
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/checkout@v3
with:
repository: "ScoopInstaller/Main"
fetch-depth: 1
path: "Main"
- uses: actions/checkout@v3
with:
repository: "ScoopInstaller/Extras"
fetch-depth: 1
path: "Extras"
- uses: actions/checkout@v3
with:
repository: "ScoopInstaller/Versions"
fetch-depth: 1
path: "Versions"
- uses: actions/checkout@v3
with:
repository: "kodybrown/scoop-nirsoft"
fetch-depth: 1
path: "scoop-nirsoft"
- uses: actions/checkout@v3
with:
repository: "ScoopInstaller/PHP"
fetch-depth: 1
path: "PHP"
- uses: actions/checkout@v3
with:
repository: "matthewjberger/scoop-nerd-fonts"
fetch-depth: 1
path: "scoop-nerd-fonts"
- uses: actions/checkout@v3
with:
repository: "ScoopInstaller/Nonportable"
fetch-depth: 1
path: "Nonportable"
- uses: actions/checkout@v3
with:
repository: "ScoopInstaller/Java"
fetch-depth: 1
path: "Java"
- uses: actions/checkout@v3
with:
repository: "Calinou/scoop-games"
fetch-depth: 1
path: "scoop-games"
- uses: actions/checkout@v3
with:
repository: "niheaven/scoop-sysinternals"
fetch-depth: 1
path: "scoop-sysinternals"
- name: Update buckets
shell: pwsh
run: |
.\update.ps1
echo "Updated on $(Get-Date -Format "yyyy-MM-dd HH:mm K")" >log
git config user.name github-actions
git config user.email github-actions@github.com
git add --all
git commit -m "Updated on $(Get-Date -Format "yyyy-MM-dd HH:mm K")"
git push -f origin master