feat(SidenavBar): add first draft of the component #8260
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-pull-requests | |
| on: [pull_request] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| concurrency: | |
| group: deploy-pull-requests-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| # Security: only deploy PRs from same repo, not from forks | |
| # Prevents malicious code in package.json from accessing VERCEL_TOKEN | |
| if: github.event.pull_request.head.repo.full_name == github.repository | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - uses: ./.github/actions/deploy-vercel-preview | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} # needed to allow comments on prs | |
| vercel-token: ${{ secrets.VERCEL_TOKEN }} # required | |
| vercel-org-id: ${{ secrets.MISTICA_WEB_VERCEL_ORG_ID}} # required | |
| vercel-project-id: ${{ secrets.MISTICA_WEB_VERCEL_PROJECT_ID}} # required | |
| vercel-project-name: mistica-web # not required by the docs, but the action fails if not specified. See https://github.com/amondnet/vercel-action/issues/30#issuecomment-678608424 | |
| working-directory: ${{ github.workspace }} |