Skip to content

fix(cli-repl): do not include crypt shared library version in buildIn… #865

fix(cli-repl): do not include crypt shared library version in buildIn…

fix(cli-repl): do not include crypt shared library version in buildIn… #865

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@v1
- uses: actions/setup-node@v2
- name: Install Dependencies and Compile
run: |
npm ci
npm run bootstrap-ci
npm run compile-ts
- 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]"
- name: Update THIRD_PARTY_NOTICES.md
run: npm run update-third-party-notices
- name: Commit THIRD_PARTY_NOTICES changes
run: |
git commit --no-allow-empty -m "chore: update THIRD_PARTY_NOTICES" THIRD_PARTY_NOTICES.md || true
- name: Update AUTHORS
run: npm run update-authors
- name: Commit AUTHORS changes
run: |
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/
- name: Commit Error Documentation changes
run: |
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
- name: Commit Error Documentation changes
run: |
git add .evergreen.yml
git commit --no-allow-empty -m "chore: update evergreen config" || true
- name: Push updates
uses: ad-m/github-push-action@v0.6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main