Skip to content

fix(arg-parser,editor): address regexp perf warnings for URI parsing … #1121

fix(arg-parser,editor): address regexp perf warnings for URI parsing …

fix(arg-parser,editor): address regexp perf warnings for URI parsing … #1121

Workflow file for this run

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@v3
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'
- name: Set up Git
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
- uses: actions/setup-node@v2
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 commit --no-allow-empty -m "chore: update THIRD_PARTY_NOTICES" THIRD_PARTY_NOTICES.md || true
- name: Update AUTHORS
run: |
npm run update-authors
git add AUTHORS \*/AUTHORS
git commit --no-allow-empty -m "chore: update AUTHORS" || true
- name: Generate Error Documentation
run: |
npm run generate-error-overview
mv error-overview.md error-overview.rst packages/errors/generated/
git add packages/errors/generated
git commit --no-allow-empty -m "chore: update error documentation" || true
- name: Regenerate Evergreen Config
run: |
npm run update-evergreen-config
git add .evergreen.yml
git commit --no-allow-empty -m "chore: update evergreen config" || true
- name: Create pull request
id: cpr
uses: peter-evans/create-pull-request@v6
with:
commit-message: Update auto-generated files
branch: ci/cron-tasks-update-files
title: 'chore: update auto-generated files'
body: |
- Update auto-generated files
- name: Merge PR
env:
PULL_REQUEST_NUMBER: ${{steps.cpr.outputs.pull-request-number}}
# NOTE: we don't use a PAT so to not trigger further automation
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh pr merge $PULL_REQUEST_NUMBER --squash --delete-branch