Skip to content

Commit

Permalink
Merge branch 'main' into docs-proofreading
Browse files Browse the repository at this point in the history
  • Loading branch information
kvanzuijlen committed May 24, 2024
2 parents 2e8e030 + 1de6906 commit e7b8c68
Show file tree
Hide file tree
Showing 700 changed files with 30,060 additions and 11,699 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM ghcr.io/containerbase/devcontainer:10.1.4
FROM ghcr.io/containerbase/devcontainer:10.6.14
2 changes: 1 addition & 1 deletion .devcontainer/post-create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ if [[ "${CODESPACES}" == true ]]; then
sudo chmod 1777 /tmp
fi

pnpm install
COREPACK_ENABLE_DOWNLOAD_PROMPT=0 pnpm install
10 changes: 9 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ module.exports = {
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'plugin:promise/recommended',
'plugin:jest-formatting/recommended',
'prettier',
],
parserOptions: {
ecmaVersion: 9,
Expand Down Expand Up @@ -225,5 +224,14 @@ module.exports = {
'import/extensions': 0,
},
},
{
files: ['tools/docs/test/**/*.mjs'],
env: {
jest: false,
},
rules: {
'@typescript-eslint/no-floating-promises': 0,
},
},
],
};
85 changes: 0 additions & 85 deletions .github/DISCUSSION_TEMPLATE/report-a-problem.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
body:
- type: dropdown
id: question-type
attributes:
label: What would you like help with?
options:
- 'I would like help with my configuration'
- 'I think I found a bug'
- 'Other'

- type: dropdown
id: how-are-you-running-renovate
attributes:
Expand All @@ -10,32 +19,14 @@ body:
- type: input
id: self-hosted-version
attributes:
label: If you're self-hosting Renovate, tell us what version of Renovate you run.
validations:
required: false

- type: dropdown
id: self-hosted-platform
attributes:
label: If you're self-hosting Renovate, select which platform you are using.
options:
- 'AWS CodeCommit'
- 'Azure DevOps (dev.azure.com)'
- 'Azure DevOps Server'
- 'Bitbucket Cloud (bitbucket.org)'
- 'Bitbucket Server'
- 'Gitea or Forgejo'
- 'github.com'
- 'GitHub Enterprise Server'
- 'gitlab.com'
- 'GitLab self-hosted'
label: If you're self-hosting Renovate, tell us which platform (GitHub, GitLab, etc) and which version of Renovate.
validations:
required: false

- type: textarea
id: the-question
attributes:
label: What is your question?
label: Please tell us more about your question or problem
validations:
required: true

Expand All @@ -54,7 +45,7 @@ body:
```
Copy/paste the relevant log(s) here, between the starting and ending backticks
Replace this text with your logs, between the starting and ending triple backticks
```
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Start a discussion
url: https://github.com/renovatebot/renovate/discussions/new
url: https://github.com/renovatebot/renovate/discussions/new/choose
about: Our preferred starting point if you have any questions or suggestions about bot configuration, features or behavior.
4 changes: 2 additions & 2 deletions .github/actions/calculate-prefetch-matrix/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ runs:
- name: Check cache miss for MacOS
id: macos-cache
uses: actions/cache/restore@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: node_modules
key: ${{ env.MACOS_KEY }}
Expand All @@ -43,7 +43,7 @@ runs:

- name: Check cache miss for Windows
id: windows-cache
uses: actions/cache/restore@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: node_modules
key: ${{ env.WINDOWS_KEY }}
Expand Down
11 changes: 6 additions & 5 deletions .github/actions/setup-node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ runs:
- name: Restore `node_modules`
id: node-modules-restore
uses: actions/cache/restore@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: node_modules
key: ${{ env.CACHE_KEY }}
Expand All @@ -47,9 +47,10 @@ runs:
(steps.node-modules-restore.outputs.cache-hit == 'true') && 'true' || ''
}}' >> "$GITHUB_ENV"
- name: Enable corepack
shell: bash
run: corepack enable
- name: Setup pnpm
uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0
with:
standalone: true

- name: Setup Node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
Expand All @@ -67,7 +68,7 @@ runs:

- name: Write `node_modules` cache
if: inputs.save-cache == 'true' && env.CACHE_HIT != 'true'
uses: actions/cache/save@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: node_modules
key: ${{ env.CACHE_KEY }}
Expand Down
9 changes: 0 additions & 9 deletions .github/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,6 @@ If you want help with your Renovate configuration, go to the [discussions tab in

For **feature requests**: first search for related requests in the issues and discussions, if you don't find anything: create a _discussion_.

## Rate Limiting of Support Requests through Temporary Blocking

To ensure that the Renovate maintainers don't burn out from dealing with unfriendly behavior, those who display a bad attitude when asking for or receiving support in the repo will be rate limited from further requests through the use of temporary blocking.
The duration of the temporary block depends on how rude or inconsiderate the behavior is perceived to be, and can be from 1-30 days.

If you have been blocked temporarily and believe that it is due to a misunderstanding, or you regret your comments and wish to make amends, please reach out to the lead maintainer Rhys Arkins by email with any request for early unblocking.
If/once you are unblocked, you should edit or delete whatever comment lead to the blocking, even if you did not intend it to be rude or inconsiderate.
Long emails or apologies are undesirable - the maintainers are busy and want to be able to help as many users as possible with the time they have available.

## Code

If you would like to fix a bug or work on a feature, please fork the repository and create a Pull Request.
Expand Down
Loading

0 comments on commit e7b8c68

Please sign in to comment.