├── .github ├── ISSUE_TEMPLATE │ └── config-help.md ├── label-actions.yml └── stale.yml ├── LICENSE └── README.md /.github/ISSUE_TEMPLATE/config-help.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Config help 3 | about: Use this template when asking help 4 | title: '' 5 | labels: '' 6 | 7 | --- 8 | 9 | 10 | 11 | ### Which Renovate are you using? 12 | 13 | 14 | 15 | Renovate Open Source CLI 16 | 17 | WhiteSource Renovate App 18 | 19 | Renovate Pro 20 | 21 | Other (please write below) 22 | 23 | ### Which platform are you using? 24 | 25 | 26 | 27 | GitHub.com 28 | 29 | GitHub Enterprise 30 | 31 | GitLab.com 32 | 33 | GitLab self-hosted 34 | 35 | Bitbucket Server 36 | 37 | Bitbucket Cloud 38 | 39 | Azure DevOps 40 | 41 | ### Have you checked the logs? Don't forget to include them if relevant 42 | 43 | 44 | 45 | ### What would you like to do? 46 | 47 | 48 | -------------------------------------------------------------------------------- /.github/label-actions.yml: -------------------------------------------------------------------------------- 1 | # Configuration for Label Actions - https://github.com/dessant/label-actions 2 | 3 | issues: 4 | actions: 5 | missing-template: 6 | comment: > 7 | Please resubmit this issue using the [Config Help issue template](https://github.com/renovatebot/config-help/issues/new?labels=&template=config-help.md&title=). 8 | close: true 9 | needs-config: 10 | comment: > 11 | Please add your Renovate config to this issue. 12 | close: false 13 | needs-logs: 14 | comment: > 15 | Please provide DEBUG logs for this problem. Try to include only the relevant lines, e.g. for the particular dependency and/or branch that's relevant. 16 | close: false 17 | filter-logs: 18 | comment: > 19 | Please do not copy paste your entire unfiltered logs. Go through the logs yourself and paste here only the parts which seem relevant. 20 | close: false 21 | needs-reproduction: 22 | comment: > 23 | This needs to be reproduced in a public repository in order to troubleshoot further. Without a reproduction, it won't be possible to answer further. 24 | close: false 25 | unclear-description: 26 | comment: > 27 | The current description of what you're trying to solve is not clear enough. Please add comments which better explain what you're trying to achieve, what's going wrong, etc. 28 | close: false 29 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Number of days of inactivity before an issue becomes stale 2 | daysUntilStale: 3 3 | # Number of days of inactivity before a stale issue is closed 4 | daysUntilClose: 5 5 | # Issues with these labels will never be considered stale 6 | staleLabel: pending-closure 7 | exemptLabels: 8 | - pinned 9 | # Comment to post when marking an issue as stale. Set to `false` to disable 10 | markComment: > 11 | This issue has been automatically marked as stale because it has not had 12 | recent activity. It will be closed soon if no further activity occurs. 13 | 14 | If this question is not done (either you plan to update it or are waiting 15 | on someone to respond) then please add a comment here to bump it and/or 16 | get the other person's attention. 17 | 18 | We aim to do our best to solve every problem. This bot is here to help us 19 | clean up issues which are no longer of use to the original poster, and not 20 | to close anything prematurely, so bump as you need! 21 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Renovate App 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Please use [Discussions in the main Renovate repository](https://github.com/renovatebot/renovate/discussions) instead. 2 | --------------------------------------------------------------------------------