From 8b92339f4261dc761b2416ac224338c5b8d13d01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?n=CE=B9c=D0=BDola=D1=95=20w=CE=B9lde?= Date: Tue, 11 May 2021 05:19:45 -0700 Subject: [PATCH] Added incomplete-pr workflow (#907) Signed-off-by: Nicholas Wilde --- .github/workflows/incomplete-pr.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/incomplete-pr.yaml diff --git a/.github/workflows/incomplete-pr.yaml b/.github/workflows/incomplete-pr.yaml new file mode 100644 index 00000000..73ceb99b --- /dev/null +++ b/.github/workflows/incomplete-pr.yaml @@ -0,0 +1,20 @@ +--- + +name: 'Incomplete PR' + +on: + issues: + types: [labeled, unlabeled, reopened] + +jobs: + support: + runs-on: ubuntu-20.04 + steps: + - uses: dessant/support-requests@v2 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + support-label: 'kind:incomplete-pr' + issue-comment: > + :wave: @{issue-author}, thanks for taking the time to submit this PR. 🙏🏽 Would you mind updating the `version` in `Chart.yaml` per [semver](http://semver.org/) and then update `README_CHANGELOG.md.gotmpl` and run `./hack/gen-helm-docs.sh stable ` again? + close-issue: false + lock-issue: false