From 2c4d0ed53656daa84fe38594a7dbf09a5991e51d Mon Sep 17 00:00:00 2001 From: Michael Gasch Date: Fri, 7 May 2021 16:37:24 +0200 Subject: [PATCH] chore: Add check WIP action Closes: #31 Signed-off-by: Michael Gasch --- .github/workflows/check-wip.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/check-wip.yaml diff --git a/.github/workflows/check-wip.yaml b/.github/workflows/check-wip.yaml new file mode 100644 index 0000000..42257f1 --- /dev/null +++ b/.github/workflows/check-wip.yaml @@ -0,0 +1,17 @@ +# ************************************************************************** +# Copyright (c) Cloud Native Foundation. +# SPDX-License-Identifier: Apache-2.0 +# ************************************************************************** + +name: Check "WIP" in PR Title + +on: + pull_request: + types: [opened, synchronize, reopened, edited] + +jobs: + wip: + runs-on: ubuntu-latest + steps: + - name: Check WIP in PR Title + uses: embano1/wip@v1