-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add some missing files from the template
- Loading branch information
1 parent
18d73c2
commit 782a6ef
Showing
3 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @MarcelCoding @SuperSandro2000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:recommended", | ||
"default:pinDigestsDisabled", | ||
"mergeConfidence:all-badges" | ||
], | ||
"assignees": [ | ||
"MarcelCoding", | ||
"SuperSandro2000" | ||
], | ||
"dependencyDashboardOSVVulnerabilitySummary": "all", | ||
"nix": { | ||
"enabled": true | ||
}, | ||
"osvVulnerabilityAlerts": true, | ||
"packageRules": [ | ||
{ | ||
"matchManagers": ["nix"], | ||
"groupName": "flake inputs" | ||
} | ||
], | ||
"prHourlyLimit": 0, | ||
"schedule": [ | ||
"before 12am on sunday" | ||
], | ||
"semanticCommits": "disabled" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Post compare link when flake.lock changes | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
on: | ||
pull_request: | ||
paths: ['flake.lock'] | ||
|
||
jobs: | ||
post-compare-link: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: NuschtOS/flake-lock-compare-action@main |