feat(dropdown): added safe triangle for submenu (#DS-2446) #567
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: Deploy documentation preview | |
| on: | |
| pull_request: | |
| # Read-only default; the write scopes this workflow needs are granted on the job itself, so a | |
| # future job added here does not silently inherit them. | |
| permissions: | |
| contents: read | |
| jobs: | |
| deploy: | |
| if: ${{ github.actor != 'dependabot[bot]' && github.event.pull_request.head.repo.full_name == github.repository && contains(fromJSON('["OWNER", "MEMBER", "CONTRIBUTOR"]'), github.event.pull_request.author_association) }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| checks: write # for FirebaseExtended/action-hosting-deploy to create a check run | |
| contents: read # for actions/checkout to read the repository | |
| pull-requests: write # for FirebaseExtended/action-hosting-deploy to comment on PRs | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - uses: ./.github/workflows/actions/setup-node | |
| - uses: ./.github/workflows/actions/build-packages | |
| - uses: ./.github/workflows/actions/build-docs | |
| - uses: FirebaseExtended/action-hosting-deploy@500ac625ca2dd40cbd15f7659af953801858032a # v0.11.0 | |
| with: | |
| repoToken: '${{ secrets.GITHUB_TOKEN }}' | |
| firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_KOOBIQ }}' | |
| firebaseToolsVersion: '15.3.1' | |
| expires: 3d | |
| channelId: prs-${{ github.event.number }} | |
| projectId: koobiq | |
| target: next |