-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
40 changed files
with
1,107 additions
and
562 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
FROM ghcr.io/containerbase/devcontainer:13.0.4 | ||
FROM ghcr.io/containerbase/devcontainer:13.0.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
workflow_dispatch: | ||
|
||
env: | ||
NODE_VERSION: 20 | ||
NODE_VERSION: 22 | ||
|
||
permissions: | ||
contents: read | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
20.18.0 | ||
22.11.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -394,7 +394,12 @@ If `true`, Renovate removes special characters when slugifying the branch name: | |
- only alphabetic characters are allowed | ||
- hyphens `-` are used to separate sections | ||
|
||
The default `false` behavior will mean that special characters like `.` may end up in the branch name. | ||
The default `false` behavior will mean that special characters like `.` and `/` may end up in the branch name. | ||
|
||
<!-- prettier-ignore --> | ||
!!! note | ||
Renovate will not apply any search/replace to the `branchPrefix` part of the branch name. | ||
If you don't want any `/` in your branch name then you will also need to change `branchPrefix` from the default `renovate/` value to something like `renovate-`. | ||
|
||
## branchPrefix | ||
|
||
|
@@ -1486,7 +1491,13 @@ You can't use other filenames because Renovate only checks the default filename | |
|
||
## gitAuthor | ||
|
||
You can customize the Git author that's used whenever Renovate creates a commit. | ||
You can customize the Git author that's used whenever Renovate creates a commit, although we do not recommend this. | ||
When this field is unset (default), Renovate will use its platform credentials (e.g. token) to learn/discover its account's git author automatically. | ||
|
||
<!-- prettier-ignore --> | ||
!!! note | ||
If running as a GitHub App and using `platformCommit`, GitHub itself sets the git author in commits so you should not configure this field. | ||
|
||
The `gitAuthor` option accepts a [RFC5322](https://datatracker.ietf.org/doc/html/rfc5322)-compliant string. | ||
It's recommended to include a name followed by an email address, e.g. | ||
|
||
|
@@ -1502,6 +1513,7 @@ Development Bot <[email protected]> | |
## gitIgnoredAuthors | ||
Specify commit authors ignored by Renovate. | ||
This field accepts [RFC5322](https://datatracker.ietf.org/doc/html/rfc5322)-compliant strings. | ||
By default, Renovate will treat any PR as modified if another Git author has added to the branch. | ||
When a PR is considered modified, Renovate won't perform any further commits such as if it's conflicted or needs a version update. | ||
|
@@ -3317,6 +3329,10 @@ It does not apply when you use a Personal Access Token as credential. | |
When `platformCommit` is enabled, Renovate will create commits with GitHub's API instead of using `git` directly. | ||
This way Renovate can use GitHub's [Commit signing support for bots and other GitHub Apps](https://github.blog/2019-08-15-commit-signing-support-for-bots-and-other-github-apps/) feature. | ||
|
||
<!-- prettier-ignore --> | ||
!!! note | ||
When using platform commits, GitHub determines the git author string to use and Renovate's own gitAuthor is ignored. | ||
|
||
## postUpdateOptions | ||
|
||
Table with options: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -307,7 +307,7 @@ Renovate will get the credentials with the [`google-auth-library`](https://www.n | |
service_account: ${{ env.SERVICE_ACCOUNT }} | ||
|
||
- name: renovate | ||
uses: renovatebot/[email protected].4 | ||
uses: renovatebot/[email protected].5 | ||
env: | ||
RENOVATE_HOST_RULES: | | ||
[ | ||
|
@@ -478,7 +478,7 @@ Make sure to install the Google Cloud SDK into the custom image, as you need the | |
For example: | ||
|
||
```Dockerfile | ||
FROM renovate/renovate:38.132.3 | ||
FROM renovate/renovate:38.142.5 | ||
# Include the "Docker tip" which you can find here https://cloud.google.com/sdk/docs/install | ||
# under "Installation" for "Debian/Ubuntu" | ||
RUN ... | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.