diff --git a/.github/workflows/example-basic.yml b/.github/workflows/example-basic.yml index 7d56e640..63c96dc6 100644 --- a/.github/workflows/example-basic.yml +++ b/.github/workflows/example-basic.yml @@ -14,5 +14,9 @@ jobs: uses: actions/checkout@v2 with: fetch-depth: 0 + - name: ls + run: npm ci - name: Renovate uses: ./ + with: + configurationFile: 'test/config.js' diff --git a/test/config.js b/test/config.js new file mode 100644 index 00000000..e506d1fe --- /dev/null +++ b/test/config.js @@ -0,0 +1,8 @@ +module.exports = { + platform: 'github', + logFileLevel: 'warn', + logLevel: 'debug', + onboarding: false, + dryRun: true, + gitAuthor: 'Renovate Bot ', +};