Update automatically generated files #1302
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
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 |