Skip to content

Commit

Permalink
Create check_pr_title.yml (#2919)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackgerrits committed Apr 5, 2021
1 parent ff20964 commit f891f21
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/check_pr_title.yml
@@ -0,0 +1,18 @@
name: "Require semantic PR title"

on:
pull_request_target:
types:
- opened
- edited
- synchronize

jobs:
check:
runs-on: ubuntu-latest
steps:
# Accepted types: https://github.com/commitizen/conventional-commit-types/blob/master/index.json
- uses: amannn/action-semantic-pull-request@v3.4.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f891f21

Please sign in to comment.