Skip to content

Update automatically generated files #1293

Update automatically generated files

Update automatically generated files #1293

Workflow file for this run

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
steps:
- 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: ${{ secrets.SVC_DEVTOOLSBOT_TOKEN }}
- name: Set up Git
run: |
git config --local user.email "[email protected]"
git config --local user.name "devtoolsbot"
- 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
mv error-overview.md error-overview.rst packages/errors/generated/
npm run reformat
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