diff --git a/.github/workflows/dependabot-yarn-mirror.yml b/.github/workflows/dependabot-yarn-mirror.yml deleted file mode 100644 index 200a20423c8..00000000000 --- a/.github/workflows/dependabot-yarn-mirror.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: dependabot-yarn-mirror - -on: [pull_request] - -concurrency: - group: dependabot-${{ github.ref }} - cancel-in-progress: true - -jobs: - update-offline-mirror: - if: github.repository == 'carbon-design-system/carbon-for-ibm-dotcom' - runs-on: ubuntu-20.04 - strategy: - matrix: - node-version: ['14.x'] - steps: - - uses: actions/checkout@v2 - - uses: fregante/setup-git-user@v1 - - name: Use Node.js - uses: actions/setup-node@v2 - with: - node-version: ${{ matrix.node-version }} - cache: 'yarn' - - name: Update yarn offline mirror - if: contains(github.event.pull_request.labels.*.name, 'dependencies') - run: | - yarn - git add -A - if [[ ! -z $(git status -s) ]] ; then git commit -m "chore(yarn): update yarn offline mirror" && git push; fi diff --git a/renovate.json b/renovate.json new file mode 100644 index 00000000000..6833783aad4 --- /dev/null +++ b/renovate.json @@ -0,0 +1,10 @@ +{ + "extends": [ + "config:base", + ":maintainLockFilesWeekly", + ":preserveSemverRanges", + "schedule:weekends", + ":noUnscheduledUpdates" + ], + "rangeStrategy": "replace" +}