Skip to content

Commit

Permalink
Merge pull request #1058 from DARMA-tasking/1031-commit-check-for-fix…
Browse files Browse the repository at this point in the history
…es-issue

1031 add action to check PR's description format
  • Loading branch information
lifflander authored Sep 19, 2020
2 parents 6b0c192 + bfcde42 commit 14b814c
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 14b814c

Please sign in to comment.