fix(ci): use rpm instead of zypper to install mongosh in suse docker … #1161
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 | |
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/ | |
npm run reformat | |
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: Update Security Test Summary | |
run: | | |
npm run update-security-test-summary | |
git add docs/security-test-summary.md | |
git commit --no-allow-empty -m "chore: update security test summary" || true | |
- name: Regenerate CLI usage text in README files | |
run: | | |
npm run update-cli-usage-text packages/*/*.md *.md | |
git add packages/*/*.md *.md | |
git commit --no-allow-empty -m "chore: update CLI usage text" || 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 |