fix: 🐛 Fix paginator implementation when only passing PageGroup objects and show_menu is falsy
#3333
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: "Pull Request Checks" | |
| on: | |
| workflow_dispatch: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened, edited] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: write-all | |
| jobs: | |
| pr-dependencies: | |
| runs-on: ubuntu-latest | |
| name: "Check PR Dependencies" | |
| steps: | |
| - name: PR Dependency Check | |
| uses: gregsdennis/[email protected] | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| semantic-title: | |
| name: "Check Semantic Title" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Check Semantic Pull Request" | |
| uses: amannn/[email protected] | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |