fix: cypress binary is installed on postinstall script which is now disabled [SPA-3604] #2374
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 approve-and-request-merge' | |
| on: pull_request_target | |
| jobs: | |
| worker: | |
| permissions: | |
| contents: write | |
| id-token: write | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == github.event.pull_request.head.repo.full_name | |
| steps: | |
| - name: Fetch Dependabot metadata | |
| id: dependabot-metadata | |
| uses: dependabot/fetch-metadata@v1 | |
| with: | |
| github-token: '${{ secrets.GITHUB_TOKEN }}' | |
| - name: Auto-merge | |
| # Don't auto-merge major version upgrades | |
| if: ${{steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major'}} | |
| uses: contentful/github-auto-merge@v1 | |
| with: | |
| VAULT_URL: ${{ secrets.VAULT_URL }} |