We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1368dd1 + 9c309f7 commit c0cbcb0Copy full SHA for c0cbcb0
.github/workflows/semantic-pull-request.yml
@@ -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