Skip to content

Commit

Permalink
Merge pull request #7 from jashparekh/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
jashparekh authored Oct 20, 2022
2 parents eb711a4 + a31a193 commit ac16a1b
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .bandit
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bandit]
exclude: *venv*,*env*,*scratch*
19 changes: 19 additions & 0 deletions .github/workflows/lint-renovate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Lint Renovate Config

on:
# Trigger the workflow on push or pull request,
# but only for the main branch
pull_request: {}
push:
branches: ["main"]

jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: 🧼 Lint # Validates changes to renovate.json config file
uses: suzuki-shunsuke/github-action-renovate-config-validator@v0.1.2
with:
config_file_path: 'renovate.json'
17 changes: 17 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"labels": [
"renovate/{{depName}}"
],
"extends": [
"config:base",
"schedule:earlyMondays",
":dependencyDashboard",
":rebaseStalePrs"
],
"enabledManagers": [
"docker-compose",
"github-actions",
"pip_requirements"
]
}

0 comments on commit ac16a1b

Please sign in to comment.