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
File renamed without changes.
File renamed without changes.
9 changes: 9 additions & 0 deletions .github/workflows/ci-signed-commits.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Check Signed Commits
on: pull_request_target

jobs:
signed-commits:
uses: llm-d/llm-d-infra/.github/workflows/reusable-signed-commits.yml@main
permissions:
contents: read
pull-requests: write
11 changes: 11 additions & 0 deletions .github/workflows/non-main-gatekeeper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Non-Main Gatekeeper
on:
pull_request:
types: [opened, edited, synchronize, reopened]

permissions:
pull-requests: write

jobs:
gatekeeper:
uses: llm-d/llm-d-infra/.github/workflows/reusable-non-main-gatekeeper.yml@main
12 changes: 12 additions & 0 deletions .github/workflows/prow-github.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Prow Commands
on:
issue_comment:
types: [created]

permissions:
issues: write
pull-requests: write

jobs:
prow:
uses: llm-d/llm-d-infra/.github/workflows/reusable-prow-commands.yml@main
12 changes: 12 additions & 0 deletions .github/workflows/prow-pr-automerge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Prow Auto-merge
on:
schedule:
- cron: "*/15 * * * *"

permissions:
contents: write
pull-requests: write

jobs:
auto-merge:
uses: llm-d/llm-d-infra/.github/workflows/reusable-prow-automerge.yml@main
9 changes: 9 additions & 0 deletions .github/workflows/prow-pr-remove-lgtm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Prow Remove LGTM
on: pull_request

permissions:
pull-requests: write

jobs:
remove-lgtm:
uses: llm-d/llm-d-infra/.github/workflows/reusable-prow-remove-lgtm.yml@main
11 changes: 11 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Mark Stale Issues
on:
schedule:
- cron: '0 1 * * *'

jobs:
stale:
uses: llm-d/llm-d-infra/.github/workflows/reusable-stale.yml@main
permissions:
issues: write
pull-requests: write
12 changes: 12 additions & 0 deletions .github/workflows/unstale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Unstale Issues
on:
issues:
types: [reopened]
issue_comment:
types: [created]

jobs:
unstale:
uses: llm-d/llm-d-infra/.github/workflows/reusable-unstale.yml@main
permissions:
issues: write
14 changes: 14 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
repos:
# general pre-commit hooks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-json
- id: check-added-large-files
args: [--maxkb=1000]
- id: check-merge-conflict
- id: mixed-line-ending
- id: check-case-conflict
4 changes: 4 additions & 0 deletions OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
approvers:
- chcost
- robertgshaw2-redhat
- smarterclayton
Loading