From 83e1b3ac503c4395a345cf8bcf49f1394a2afcf2 Mon Sep 17 00:00:00 2001 From: Sebastian Silbermann Date: Mon, 5 Jul 2021 13:06:20 +0200 Subject: [PATCH] [core] Migrate remaining mentions of Dependabot to Renovate (#27118) --- .github/workflows/ci.yml | 4 ++-- README.md | 2 +- scripts/releaseChangelog.js | 8 +++----- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 34e0a6b0d0db0a..8d2a5e9f95654d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,9 +3,9 @@ name: CI on: push: branches-ignore: - # Dependabot branches are always Pull Requests. + # Renovate branches are always Pull Requests. # We don't need to run CI twice (push+pull_request) - - 'dependabot/**' + - 'renovate/**' pull_request: jobs: diff --git a/README.md b/README.md index 53e634246acb93..c0a6678cad9765 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Quickly build beautiful [React](https://reactjs.org/) apps. Material-UI is a sim [![CircleCI](https://img.shields.io/circleci/project/github/mui-org/material-ui/next.svg)](https://app.circleci.com/pipelines/github/mui-org/material-ui?branch=next) [![Coverage Status](https://img.shields.io/codecov/c/github/mui-org/material-ui/next.svg)](https://codecov.io/gh/mui-org/material-ui/branch/next) [![Follow on Twitter](https://img.shields.io/twitter/follow/MaterialUI.svg?label=follow+Material-UI)](https://twitter.com/MaterialUI) -[![Dependabot Status](https://api.dependabot.com/badges/status?host=github&repo=mui-org/material-ui)](https://dependabot.com) +[![Renovate status](https://img.shields.io/badge/renovate-enabled-brightgreen.svg)](https://github.com/mui-org/material-ui/issues/27062) [![Average time to resolve an issue](https://isitmaintained.com/badge/resolution/mui-org/material-ui.svg)](https://isitmaintained.com/project/mui-org/material-ui 'Average time to resolve an issue') [![Crowdin](https://badges.crowdin.net/material-ui-docs/localized.svg)](https://translate.material-ui.com/project/material-ui-docs) [![Open Collective backers and sponsors](https://img.shields.io/opencollective/all/material-ui)](https://opencollective.com/material-ui) diff --git a/scripts/releaseChangelog.js b/scripts/releaseChangelog.js index d6b00d22d69725..c41b45d105cdb7 100644 --- a/scripts/releaseChangelog.js +++ b/scripts/releaseChangelog.js @@ -32,11 +32,9 @@ function parseTags(commitMessage) { * @param {Octokit.ReposCompareCommitsResponseCommitsItem} commitsItem */ function filterCommit(commitsItem) { - // exclude dependabot commits (sometimes they're merged manually so filtering by author is insufficient) - return ( - commitsItem.author.login !== 'dependabot-preview[bot]' && - !commitsItem.commit.message.startsWith('Bump') - ); + // TODO: Use labels + // Filter dependency updates + return !commitsItem.commit.message.startsWith('Bump'); } async function findLatestTaggedVersion() {