Skip to content

Commit

Permalink
Find and replace rynovate -> renovate-config-seek
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronMoat committed Apr 8, 2024
1 parent 8c56510 commit 664c9af
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
18 changes: 9 additions & 9 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Hi there, thanks for checking out our repo!

Rynovate is a set of [shareable Renovate config presets] that we use at SEEK.
renovate-config-seek is a set of [shareable Renovate config presets] that we use at SEEK.
While third-party contributions are certainly welcome,
this project is entirely driven by our internal requirements.

Expand All @@ -21,7 +21,7 @@ so don't commit or post anything that isn't ready for the entire world to see.

## Getting started

Rynovate is documented through its [README](/README.md).
renovate-config-seek is documented through its [README](/README.md).
Its presets are mastered as JSON files in the repository root.

Keep in mind that Renovate is incredibly difficult to configure correctly.
Expand Down Expand Up @@ -68,7 +68,7 @@ If you don't have push access,
you may need to [fork the repo] and push there instead:

```shell
git remote add fork git@github.com:your-username/rynovate.git
git remote add fork git@github.com:your-username/renovate-config-seek.git
git push --set-upstream fork your-branch-name
```

Expand All @@ -80,14 +80,14 @@ If all is well, they will merge your pull request into master.
If you are making a non-trivial change,
we recommend that you test it out on an individual repository first.

Extending an existing Rynovate config is often not enough,
Extending an existing renovate-config-seek config is often not enough,
as package rule ordering can affect Renovate's behaviour in non-obvious ways.

```json5
// Not recommended for testing changes to the preset. Instead, copy across the
// raw JSON of the preset and tweak it from there.
{
extends: ['github>seek-oss/rynovate'],
extends: ['github>seek-oss/renovate-config-seek'],
packageRules: [
// ...
],
Expand All @@ -102,13 +102,13 @@ You can push changes to this onboarding PR to update the preview.

## Releases

Rynovate consumers track the master branch on GitHub,
renovate-config-seek consumers track the master branch on GitHub,
so merging a pull request constitutes a release.

[#typescriptification]: https://seekchat.slack.com/channels/typescriptification
[create a pull request]: https://github.com/seek-oss/rynovate/compare
[fork the repo]: https://github.com/seek-oss/rynovate/fork
[create a pull request]: https://github.com/seek-oss/renovate-config-seek/compare
[fork the repo]: https://github.com/seek-oss/renovate-config-seek/fork
[install renovate]: https://github.com/apps/renovate/installations/new
[onboarding pr]: https://docs.renovatebot.com/configure-renovate/
[shareable renovate config presets]: https://docs.renovatebot.com/config-presets/
[submit an issue]: https://github.com/seek-oss/rynovate/issues/new/choose
[submit an issue]: https://github.com/seek-oss/renovate-config-seek/issues/new/choose
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Rynovate
# renovate-config-seek

[![Validate](https://github.com/seek-oss/rynovate/actions/workflows/validate.yml/badge.svg)](https://github.com/seek-oss/rynovate/actions/workflows/validate.yml)
[![Validate](https://github.com/seek-oss/renovate-config-seek/actions/workflows/validate.yml/badge.svg)](https://github.com/seek-oss/renovate-config-seek/actions/workflows/validate.yml)

Mildly-aggressive [Renovate] presets for keeping dependencies up to date.

Expand All @@ -16,7 +16,7 @@ See [renovate-config-seek] for a baseline preset that only maintains SEEK npm pa
- [non-critical](#non-critical)
- [third-party-major](#third-party-major)
- [Usage](#usage)
- [Contributing](https://github.com/seek-oss/rynovate/blob/master/CONTRIBUTING.md)
- [Contributing](https://github.com/seek-oss/renovate-config-seek/blob/master/CONTRIBUTING.md)

## Presets

Expand Down Expand Up @@ -81,7 +81,7 @@ Reference in an [extends] array within [Renovate] config:
// Required to access private SEEK packages
'local>seek-jobs/renovate-config',

'github>seek-oss/rynovate',
'github>seek-oss/renovate-config-seek',
],
}
```
Expand All @@ -94,7 +94,7 @@ Choose a named preset with a `:preset` suffix:
// Required to access private SEEK packages
'local>seek-jobs/renovate-config',

'github>seek-oss/rynovate:non-critical'.
'github>seek-oss/renovate-config-seek:non-critical'.
],
}
```
Expand All @@ -109,7 +109,7 @@ Disable incompatible major version upgrades for a specific package:
// Required to access private SEEK packages
'local>seek-jobs/renovate-config',

'github>seek-oss/rynovate',
'github>seek-oss/renovate-config-seek',
],
packageRules: [
{
Expand All @@ -131,7 +131,7 @@ Ignore a specific package version:
// Required to access private SEEK packages
'local>seek-jobs/renovate-config',

'github>seek-oss/rynovate',
'github>seek-oss/renovate-config-seek',
],
packageRules: [
{
Expand All @@ -152,7 +152,7 @@ Ungroup a specific package that is usually grouped by the preset:
// Required to access private SEEK packages
'local>seek-jobs/renovate-config',

'github>seek-oss/rynovate:non-critical',
'github>seek-oss/renovate-config-seek:non-critical',
],
packageRules: [
{
Expand Down

0 comments on commit 664c9af

Please sign in to comment.