Skip to content

Commit 171ee05

Browse files
chore: Configure Renovate (#280)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Andrew Azores <me@andrewazor.es>
1 parent 0580409 commit 171ee05

File tree

4 files changed

+40
-0
lines changed

4 files changed

+40
-0
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @cryostatio/reviewers

.github/labeler.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
needs-triage:
2+
- changed-files:
3+
- any-glob-to-any-file: '*'

.github/renovate.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:recommended",
5+
":dependencyDashboard"
6+
],
7+
"reviewersFromCodeOwners": true,
8+
"labels": [
9+
"dependencies",
10+
"chore",
11+
"safe-to-test"
12+
],
13+
"semanticCommits": "enabled",
14+
"major": {
15+
"dependencyDashboardApproval": true
16+
},
17+
"stopUpdatingLabel": "blocked"
18+
}

.github/workflows/labeler.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Label pull request
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
- reopened
8+
9+
jobs:
10+
triage:
11+
permissions:
12+
contents: read
13+
pull-requests: write
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/labeler@v6
17+
with:
18+
repo-token: "${{ secrets.GITHUB_TOKEN }}"

0 commit comments

Comments
 (0)