Update automatically generated files #1298
Workflow file for this run
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 | |
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: main # TODO: change to {{ 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 }} | |
- 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 |