Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions: {}

jobs:
auto-merge:
uses: netresearch/.github/.github/workflows/auto-merge-deps.yml@22155f1bdaf6b0b19a6efb1c40e6778722c62cff # main
uses: netresearch/.github/.github/workflows/auto-merge-deps.yml@main
with:
safe-updates-only: true
merge-strategy: rebase
Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/pr-quality.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# SPDX-License-Identifier: MIT
# Copyright (c) 2026 Netresearch DTT GmbH
#
# PR Quality Gates — caller for the org-wide reusable workflow.
# Provides:
# - PR size labeling (warn over 500 lines, alert over 1000)
# - Auto-approve for maintainer PRs (OWNER/MEMBER/COLLABORATOR), so the
# branch-protection "1 approval" gate doesn't block trivial maintainer
# work; Copilot review still runs separately via the Copilot ruleset.
# Reusable: netresearch/.github/.github/workflows/pr-quality.yml

name: PR Quality Gates

on:
pull_request:
branches: [main]
types: [opened, synchronize, reopened, ready_for_review]

permissions: {}

jobs:
quality:
uses: netresearch/.github/.github/workflows/pr-quality.yml@main
with:
auto-approve-maintainers: true
permissions:
contents: read
pull-requests: write
11 changes: 11 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,17 @@
"groupName": "GitHub Actions",
"pinDigests": true
},
{
"description": "First-party Netresearch reusable workflows: never digest-pin. Org policy is @main (or @vN once tagged releases exist). Distinct from third-party actions which DO get SHA-pinned per supply-chain convention. Without this rule, Renovate's earlier digest-pinning produced commit 309fca0 (auto-merge.yml@<sha>) which violates that policy.",
Comment thread
CybotTM marked this conversation as resolved.
"matchManagers": [
"github-actions"
],
"matchPackagePatterns": [
"^netresearch/"
],
"pinDigests": false,
"enabled": false
Comment thread
CybotTM marked this conversation as resolved.
},
{
"description": "Security updates - high priority",
"matchCategories": [
Expand Down