diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..1dc4912 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @MarcelCoding @SuperSandro2000 diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..2d6a0a6 --- /dev/null +++ b/.github/renovate.json @@ -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" +} diff --git a/.github/workflows/post-compare-link.yaml b/.github/workflows/post-compare-link.yaml new file mode 100644 index 0000000..148c484 --- /dev/null +++ b/.github/workflows/post-compare-link.yaml @@ -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