Skip to content

Commit

Permalink
chore(actions): configure renovate (#1182)
Browse files Browse the repository at this point in the history
Co-authored-by: Vasco Ramos <[email protected]>
Co-authored-by: Azory YData Bot <[email protected]>
  • Loading branch information
3 people committed Nov 29, 2022
1 parent e4d020b commit c3eaa8d
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 15 deletions.
12 changes: 0 additions & 12 deletions .github/dependabot.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/semantic.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
titleAndCommits: true
titleOnly: true
13 changes: 12 additions & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,19 @@ on:
pull_request:

jobs:
commitlint:
name: Lint commit message
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: wagoid/commitlint-github-action@v5

lint:
if: github.actor != 'dependabot[bot]'
if: github.actor != 'renovate[bot]'
name: Lint source code
runs-on: ubuntu-latest

Expand Down
7 changes: 7 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"baseBranches": ["develop"]
}
1 change: 0 additions & 1 deletion src/pandas_profiling/utils/cache.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""Dataset cache utility functions"""
import zipfile
from pathlib import Path

from urllib import request

from pandas_profiling.utils.paths import get_data_path
Expand Down

0 comments on commit c3eaa8d

Please sign in to comment.