mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-20 14:10:16 -06:00
# Conflicts: # npm/vite-dev-server/src/makeCypressPlugin.ts # npm/vite-dev-server/src/resolveServerConfig.ts # npm/vue/README.md # npm/webpack-dev-server/package.json # packages/driver/cypress/integration/commands/actions/type_spec.js # packages/driver/src/cy/commands/navigation.ts
21 lines
538 B
YAML
21 lines
538 B
YAML
name: "Semantic Pull Request"
|
|
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- synchronize
|
|
|
|
jobs:
|
|
main:
|
|
name: Lint Title
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# use a fork of the GitHub action - we cannot pull in untrusted third party actions
|
|
# see https://github.com/cypress-io/cypress/pull/20091#discussion_r801799647
|
|
- uses: cypress-io/action-semantic-pull-request@v4
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
validateSingleCommit: true |