Skip to content

Commit c0cbcb0

Browse files
authored
Merge pull request #543 from cypress-io/issue-539-fix-release
fix: Add semantic-pull-request checking
2 parents 1368dd1 + 9c309f7 commit c0cbcb0

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: "Semantic Pull Request"
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
- edited
8+
- synchronize
9+
10+
jobs:
11+
main:
12+
name: Lint Title
13+
runs-on: ubuntu-latest
14+
steps:
15+
# use a fork of the GitHub action - we cannot pull in untrusted third party actions
16+
# see https://github.com/cypress-io/cypress/pull/20091#discussion_r801799647
17+
- uses: cypress-io/action-semantic-pull-request@v4
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
with:
21+
validateSingleCommit: true

0 commit comments

Comments
 (0)