diff --git a/.github/label-actions.yml b/.github/label-actions.yml
new file mode 100644
index 0000000000000000000000000000000000000000..b830afd7bd1dcf62bbdfcb23dd2991ce2e0f069f
--- /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 0000000000000000000000000000000000000000..6b99715b2ae0c9bfbc1c33e1e68a03f07ac8888f
--- /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'