From 387d9c4a8f8be3282c8bbe5d782b1285ae57c2e4 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Sun, 14 Feb 2021 11:05:49 +0100 Subject: [PATCH] chore: label issues --- .github/label-actions.yml | 12 ++++++++++++ .github/workflows/label-actions.yml | 16 ++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 .github/label-actions.yml create mode 100644 .github/workflows/label-actions.yml diff --git a/.github/label-actions.yml b/.github/label-actions.yml new file mode 100644 index 0000000000..b830afd7bd --- /dev/null +++ b/.github/label-actions.yml @@ -0,0 +1,12 @@ +'reproduction:required': + issues: + comment: > + This issue has been labeled as requiring a reproduction, usually because implementation won't be possible without it. + + Please consult our guide on [minimal reproductions](https://github.com/renovatebot/renovate/blob/master/docs/development/minimal-reproductions.md) to understand what is needed. +'reproduction:provided': + issues: + comment: > + Thank you for providing a reproduction. + + The label will be updated to `reproduction:verified` once someone else has confirmed they can reproduce the problem with it. diff --git a/.github/workflows/label-actions.yml b/.github/workflows/label-actions.yml new file mode 100644 index 0000000000..6b99715b2a --- /dev/null +++ b/.github/workflows/label-actions.yml @@ -0,0 +1,16 @@ +name: 'Label Actions' + +on: + issues: + types: [labeled, unlabeled] + pull_request: + types: [labeled, unlabeled] + +jobs: + reaction: + runs-on: ubuntu-latest + steps: + - uses: dessant/label-actions@v2 + with: + github-token: ${{ github.token }} + process-only: 'issues' -- GitLab