Skip to content

Commit

Permalink
Merge pull request #543 from cypress-io/issue-539-fix-release
Browse files Browse the repository at this point in the history
fix: Add semantic-pull-request checking
  • Loading branch information
BlueWinds committed Mar 15, 2022
2 parents 1368dd1 + 9c309f7 commit c0cbcb0
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/semantic-pull-request.yml
@@ -0,0 +1,21 @@
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

0 comments on commit c0cbcb0

Please sign in to comment.