This repository was archived by the owner on Jan 17, 2024. It is now read-only.
build(deps): bump axios, @docusaurus/core, @docusaurus/preset-classic and @docusaurus/theme-mermaid in /src/docs_website #2
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: Other Pipeline | |
concurrency: | |
group: other-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
on: | |
# Run CI for any PRs that target 'main' when they are opened or updated. | |
pull_request: | |
branches: | |
- 'main' | |
types: | |
- opened | |
- synchronize | |
workflow_call: | |
jobs: | |
windows: | |
uses: ./.github/workflows/windows.yml | |
macos: | |
uses: ./.github/workflows/macos.yml | |
other-pipeline: | |
needs: | |
- windows | |
- macos | |
runs-on: ubuntu-latest | |
steps: | |
- name: All Other CI Jobs Passed | |
working-directory: ./ | |
run: exit 0 |