1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-02-19 19:44:16 +02:00

feat: Added renovate configuration (#2377)

This commit is contained in:
Koen van Zuijlen 2024-01-20 20:51:34 +01:00 committed by GitHub
parent 0b24f45965
commit 184c5820af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 28 additions and 5 deletions

24
.github/renovate.json5 vendored Normal file
View File

@ -0,0 +1,24 @@
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
semanticCommits: "auto",
enabledManagers: [
"dockerfile",
"gomod",
"github-actions",
"npm",
"regex",
],
customManagers: [
{
customType: "regex",
fileMatch: [
"^Makefile"
],
matchStrings: [
"DOCKER_BUILD_RUNTIME_IMAGE_ALPINE\\s+?\\?= alpine:(?<currentValue>.*)\\s"
],
depNameTemplate: "alpine",
datasourceTemplate: "docker",
},
],
}

View File

@ -5,13 +5,13 @@ This website is built using [Docusaurus 2](https://v2.docusaurus.io/), a modern
## Installation
```console
yarn install
npm install
```
## Local Development
```console
yarn start
npm start
```
This command starts a local development server and open up a browser window. Most changes are reflected live without having to restart the server.
@ -19,7 +19,7 @@ This command starts a local development server and open up a browser window. Mos
## Build
```console
yarn build
npm build
```
This command generates static content into the `build` directory and can be served using any static contents hosting service.
@ -27,7 +27,7 @@ This command generates static content into the `build` directory and can be serv
## Deployment
```console
GIT_USER=<Your GitHub username> USE_SSH=true yarn deploy
GIT_USER=<Your GitHub username> USE_SSH=true npm deploy
```
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.

View File

@ -1,6 +1,5 @@
{
"name": "docusaurus",
"version": "0.0.0",
"private": true,
"scripts": {