From d69259fc0b947c8364781f59e03b0affdacc4251 Mon Sep 17 00:00:00 2001 From: ricardojdsilva87 Date: Wed, 13 Nov 2024 16:05:08 +0000 Subject: [PATCH] fix: README lint --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bd79456..4a1df1d 100644 --- a/README.md +++ b/README.md @@ -138,26 +138,26 @@ This configuration file needs to exist on the repository where the action runs. Set the input variable: -``` +```yaml DEPENDABOT_CONFIG_FILE = "dependabot-config.yaml" ``` Create a file on your repository in the same path: -``` +```yaml npm: - type: 'npm' - url: 'https://yourprivateregistry/npm/' - username: '${{secrets.username}}' - password: '${{secrets.password}}' + type: "npm" + url: "https://yourprivateregistry/npm/" + username: "${{secrets.username}}" + password: "${{secrets.password}}" key: token: replaces-base: maven: - type: 'maven' - url: 'https://yourprivateregistry/maven/' - username: '${{secrets.username}}' - password: '${{secrets.password}}' + type: "maven" + url: "https://yourprivateregistry/maven/" + username: "${{secrets.username}}" + password: "${{secrets.password}}" ``` The principal key of each configuration need to match the package managers that the [script is looking for](https://github.com/github/evergreen/blob/main/dependabot_file.py#L78).