feat: add the forceHttp1 config option, replacing CYPRESS_INTERNAL_DISABLE_PROXY
#55935
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: "Semantic Pull Request" | |
| # @see https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs | |
| permissions: | |
| actions: none | |
| checks: none | |
| # to check out & read the repository | |
| contents: read | |
| deployments: none | |
| id-token: none | |
| issues: none | |
| discussions: none | |
| packages: none | |
| pages: none | |
| # to read pull-request data, including commits/issues linked | |
| pull-requests: read | |
| repository-projects: none | |
| security-events: none | |
| statuses: none | |
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| branches: | |
| - develop | |
| - release/* | |
| jobs: | |
| main: | |
| name: Semantic Pull Request | |
| runs-on: ubuntu-latest | |
| environment: ${{ github.event.pull_request.head.repo.full_name != github.repository && 'fork-pr-review' || '' }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| with: | |
| ref: ${{ github.event.pull_request.base.ref }} | |
| repository: ${{ github.event.pull_request.base.repo.full_name }} | |
| - run: npm install | |
| working-directory: scripts/github-actions/semantic-pull-request/ | |
| - name: Lint PR Title and Cypress Changelog Entry | |
| if: github.event_name == 'pull_request_target' | |
| uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9 | |
| with: | |
| script: | | |
| const verifyPullRequest = require('./scripts/github-actions/semantic-pull-request') | |
| await verifyPullRequest({ context, core, github }) |