Skip to content

Commit

Permalink
[core] Migrate remaining mentions of Dependabot to Renovate (#27118)
Browse files Browse the repository at this point in the history
  • Loading branch information
eps1lon authored Jul 5, 2021
1 parent d195c9b commit 83e1b3a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
8 changes: 3 additions & 5 deletions scripts/releaseChangelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 83e1b3a

Please sign in to comment.