Skip to content

Commit

Permalink
#1031 add action to check PR's description format
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Strzebonski committed Sep 18, 2020
1 parent 6b0c192 commit bfcde42
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/check-pr-comment-fixes-issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: PR checks (PR description format)

on:
pull_request:
types: [opened, edited, reopened]

jobs:
check:
name: Check PR description
runs-on: ubuntu-latest
steps:
- uses: DARMA-tasking/check-pr-fixes-issue@master
with:
pr_branch: ${{ github.head_ref }}
pr_title: ${{ github.event.pull_request.title }}
pr_description: ${{ github.event.pull_request.body }}

0 comments on commit bfcde42

Please sign in to comment.