feat: add ArrayShapeDescriber for precise array shape documentation #711
Workflow file for this run
This file contains hidden or 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: Dependabot update UI files | |
| on: pull_request | |
| jobs: | |
| dependabot: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./utils | |
| permissions: | |
| contents: write | |
| if: github.event.pull_request.user.login == 'dependabot[bot]' | |
| steps: | |
| - name: "Checkout" | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: ${{ github.event.pull_request.head.repo.full_name }} | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '20.x' | |
| - run: yarn install | |
| - name: Swagger UI | |
| run: yarn run swagger | |
| - name: Redocly | |
| run: yarn run redoc | |
| - name: Scalar | |
| run: yarn run scalar | |
| - name: Stoplight | |
| run: yarn run stoplight | |
| - uses: stefanzweifel/git-auto-commit-action@v7 | |
| with: | |
| commit_message: "[dependabot-skip] Update UI files" | |
| branch: ${{ github.head_ref }} |