-
Notifications
You must be signed in to change notification settings - Fork 67
83 lines (69 loc) · 2.21 KB
/
cron-tasks.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
76
77
78
79
80
81
82
83
name: Update automatically generated files
on:
# Once a week or on pushes to main
schedule:
- cron: "0 3 * * 0"
push:
branches:
- main
jobs:
update_generated_files:
name: Update automatically generated files
runs-on: ubuntu-latest
env:
npm_config_loglevel: verbose
npm_config_foreground_scripts: "true"
PUPPETEER_SKIP_DOWNLOAD: "true"
steps:
- uses: mongodb-js/devtools-shared/actions/setup-bot-token@main
id: app-token
with:
app-id: ${{ vars.DEVTOOLS_BOT_APP_ID }}
private-key: ${{ secrets.DEVTOOLS_BOT_PRIVATE_KEY }}
- uses: actions/checkout@v4
with:
# don't checkout a detatched HEAD
ref: ${{ github.head_ref }}
# this is important so git log can pick up on
# the whole history to generate the list of AUTHORS
fetch-depth: "0"
token: ${{ steps.app-token.outputs.token }}
- uses: actions/setup-node@v4
with:
node-version: ^16.x
cache: "npm"
- name: Install npm@8
run: |
npm install -g npm@8
- name: Install Dependencies and Compile
run: |
npm ci
npm run compile
- name: Update THIRD_PARTY_NOTICES.md
run: |
npm run update-third-party-notices
git add THIRD_PARTY_NOTICES.md
- name: Update AUTHORS
run: |
npm run update-authors
git add AUTHORS \*/AUTHORS
- name: Generate Error Documentation
run: |
npm run generate-error-overview
git add packages/errors/generated
- name: Regenerate Evergreen Config
run: |
npm run update-evergreen-config
git add .evergreen.yml
- name: Update Security Test Summary
run: |
npm run update-security-test-summary
git add docs/security-test-summary.md
- name: Regenerate CLI usage text in README files
run: |
npm run update-cli-usage-text packages/*/*.md *.md
git add packages/*/*.md *.md
- name: Commit and push
run: |
git commit --no-allow-empty -m "chore: update auto-generated files [skip actions]" || true
git push