-
Notifications
You must be signed in to change notification settings - Fork 67
96 lines (80 loc) · 2.82 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
84
85
86
87
88
89
90
91
92
93
94
95
96
name: Update automatically generated files
on:
# Once a week or on pushes to main
schedule:
- cron: "0 3 * * 0"
push:
branches:
- main
workflow_dispatch: # This should be removed once the workflow is tested and working
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: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.DEVTOOLS_BOT_APP_ID }}
private-key: ${{ secrets.DEVTOOLS_BOT_PRIVATE_KEY }}
- name: Get GitHub App User ID
id: get-user-id
run: echo "user-id=$(gh api "/users/${{ steps.app-token.outputs.app-slug }}[bot]" --jq .id)" >> "$GITHUB_OUTPUT"
env:
GH_TOKEN: ${{ steps.app-token.outputs.token }}
- 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 }}
persist-credentials: false
- name: Set up Git
run: |
git config --global user.name '${{ steps.app-token.outputs.app-slug }}[bot]'
git config --global user.email '${{ steps.get-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com>'
- 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" || true
git push