From 507fdfb31cd2181fe39cda7d2736f9b828202bd9 Mon Sep 17 00:00:00 2001 From: Jeroen de Bruijn Date: Sun, 3 May 2020 18:40:17 +0200 Subject: [PATCH] ci: remove example as the build can act as example --- .github/workflows/build.yml | 2 +- .github/workflows/example.yml | 17 ----------------- example/config.js | 9 --------- .github/config.js => example/renovate-config.js | 0 4 files changed, 1 insertion(+), 27 deletions(-) delete mode 100644 .github/workflows/example.yml delete mode 100644 example/config.js rename .github/config.js => example/renovate-config.js (100%) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2bc6dd37..1b8fbf6a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -62,7 +62,7 @@ jobs: - name: Renovate test uses: ./ with: - configurationFile: .github/config.js + configurationFile: example/renovate-config.js token: ${{ secrets.RENOVATE_TOKEN }} build: diff --git a/.github/workflows/example.yml b/.github/workflows/example.yml deleted file mode 100644 index 630ae56f..00000000 --- a/.github/workflows/example.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Example -on: - push: - branches: - - master - pull_request: -jobs: - example: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2.1.0 - - name: Renovate example - uses: ./ - with: - configurationFile: example/config.js - token: ${{ secrets.RENOVATE_TOKEN }} diff --git a/example/config.js b/example/config.js deleted file mode 100644 index e6b7683b..00000000 --- a/example/config.js +++ /dev/null @@ -1,9 +0,0 @@ -module.exports = { - branchPrefix: 'ga-renovate/', - dryRun: true, - gitAuthor: 'Renovate Bot ', - logLevel: 'debug', - onboarding: false, - platform: 'github', - repositories: ['renovatebot/github-action'], -}; diff --git a/.github/config.js b/example/renovate-config.js similarity index 100% rename from .github/config.js rename to example/renovate-config.js