Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,3 +113,16 @@ repository:
# apps: []
# users: []
# teams: []

branches:
- name: renovate/*
protection:
# Dependency update branches: only the Renovate automation app may push.
required_pull_request_reviews: null
required_status_checks: null
enforce_admins: true
restrictions:
apps:
- agntcy-automation
users: []
teams: []
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
push:
branches:
- main
- renovate/**
tags:
- "v*.*.*"
pull_request:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ name: "CodeQL Advanced"

on:
push:
branches: ["main"]
branches:
- main
- renovate/**
pull_request:
branches: ["main"]
schedule:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/conventional_commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ name: commit-msg

on:
push:
# Run superlinter on pushes to default branch
# Run superlinter on pushes to default branch and Renovate branches
branches:
- main
- renovate/**
# Run superlinter on pull request events
pull_request:

Expand Down
6 changes: 5 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@
],
"enabled": true,
"minimumReleaseAge": "7 days",
"schedule": ["before 6am on Monday"],
"schedule": [
"before 6am on Monday",
"before 6am on Wednesday",
"before 6am on Friday"
],
"prCreation": "not-pending",
"enabledManagers": [
"custom.regex",
Expand Down
Loading