From bfcde42e3bd70b40aa9fb2a278af43ebfe039137 Mon Sep 17 00:00:00 2001 From: Jakub Strzebonski Date: Mon, 14 Sep 2020 15:36:09 +0200 Subject: [PATCH] #1031 add action to check PR's description format --- .../workflows/check-pr-comment-fixes-issue.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/check-pr-comment-fixes-issue.yml diff --git a/.github/workflows/check-pr-comment-fixes-issue.yml b/.github/workflows/check-pr-comment-fixes-issue.yml new file mode 100644 index 0000000000..cef195c588 --- /dev/null +++ b/.github/workflows/check-pr-comment-fixes-issue.yml @@ -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 }}