diff --git a/.github/label-actions.yml b/.github/label-actions.yml
index f672debb5d680d935998c53273b0a0dd3db65a85..2e1e13ad0c556ab954cbfd387ae342419e88c346 100644
--- a/.github/label-actions.yml
+++ b/.github/label-actions.yml
@@ -3,7 +3,7 @@
     Hi there,
 
 
-    Get your issue fixed faster by creating a minimal reproduction.
+    Get your discussion fixed faster by creating a minimal reproduction.
     This means a repository dedicated to reproducing this issue with the minimal dependencies and config possible.
 
 
@@ -14,7 +14,7 @@
     To get started, please read our guide on creating a [minimal reproduction](https://github.com/renovatebot/renovate/blob/main/docs/development/minimal-reproductions.md).
 
 
-    We may close the issue if you, or someone else, haven't created a minimal reproduction within two weeks.
+    We may close the discussion if you, or someone else, haven't created a minimal reproduction within two weeks.
     If you need more time, or are stuck, please ask for help or more time in a comment.
 
 
diff --git a/.github/workflows/stale-action.yml b/.github/workflows/stale-action.yml
deleted file mode 100644
index 0ef526217ed2d4d76629bca766ff414db1aebd02..0000000000000000000000000000000000000000
--- a/.github/workflows/stale-action.yml
+++ /dev/null
@@ -1,41 +0,0 @@
-# Go to https://github.com/actions/stale for the full documentation of these options.
-
-name: 'Close stale bug reports that lack reproduction'
-on:
-  schedule:
-    - cron: '30 1 * * *'
-
-permissions:
-  issues: write
-  pull-requests: write
-
-jobs:
-  stale:
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/stale@1160a2240286f5da8ec72b1c0816ce2481aabf84 # v8.0.0
-        with:
-          # Rate limit per run, (defaults to 30, but we've increased it to 40 for now).
-          operations-per-run: 40
-
-          # Only issues with both `reproduction:needed` and `type:bug` will be touched by the stale bot.
-          only-issue-labels: 'reproduction:needed,type:bug'
-
-          # A issue that has any assignee is getting worked on, so is exempt from stale bot.
-          exempt-all-issue-assignees: true
-
-          # Remove stale label from issue/PR on updates or comments, defaults to true.
-          remove-stale-when-updated: true
-
-          # Wait 14 days until making issue stale and posting a message.
-          days-before-issue-stale: 14
-          stale-issue-message: 'When a bug has been marked as needing a reproduction, it means nobody can work on it until one is provided. In cases where no reproduction is possible, or the issue creator does not have the time to reproduce, we unfortunately need to close such issues as they are non-actionable and serve no benefit by remaining open. This issue will be closed after 7 days of inactivity.'
-          stale-issue-label: 'stale'
-
-          # Close out issue after 7 stale days.
-          days-before-issue-close: 7
-          close-issue-message: 'This bug report has been closed as we need a reproduction to work on this. If the original poster or anybody else with the same problem discovers that they can reproduce it, please create a new issue, and reference this issue.'
-
-          # Never label/close any pull requests.
-          days-before-pr-close: -1
-          days-before-pr-stale: -1