File tree Expand file tree Collapse file tree 7 files changed +117
-0
lines changed
Expand file tree Collapse file tree 7 files changed +117
-0
lines changed Original file line number Diff line number Diff line change 1+ # Run specified actions or jobs for issue and PR comments
2+
3+ name : " Prow github actions"
4+ on :
5+ issue_comment :
6+ types : [created]
7+
8+ # Grant additional permissions to the GITHUB_TOKEN
9+ permissions :
10+ # Allow labeling issues
11+ issues : write
12+ # Allow adding a review to a pull request
13+ pull-requests : write
14+
15+ jobs :
16+ prow-execute :
17+ runs-on : ubuntu-latest
18+ steps :
19+ - uses : jpmcb/prow-github-actions@v2.0.0
20+ with :
21+ github-token : " ${{ secrets.GITHUB_TOKEN }}"
22+ prow-commands : " /assign
23+ /unassign
24+ /approve
25+ /retitle
26+ /area
27+ /kind
28+ /priority
29+ /remove
30+ /lgtm
31+ /close
32+ /reopen
33+ /lock
34+ /milestone
35+ /hold
36+ /cc
37+ /uncc"
Original file line number Diff line number Diff line change 1+ # This Github workflow will check every hour for PRs with the lgtm label and will attempt to automatically merge them.
2+ # If the hold label is present, it will block automatic merging.
3+
4+ name : " Prow merge on lgtm label"
5+ on :
6+ schedule :
7+ - cron : " */5 * * * *" # every 5 minutes
8+
9+ jobs :
10+ auto-merge :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : jpmcb/prow-github-actions@v2.0.0
14+ with :
15+ jobs : ' lgtm'
16+ github-token : " ${{ secrets.GITHUB_TOKEN }}"
17+ merge-method : ' squash'
18+
Original file line number Diff line number Diff line change 1+ name : Run Jobs on PR
2+ on : pull_request
3+
4+ jobs :
5+ execute :
6+ runs-on : ubuntu-latest
7+ steps :
8+ - uses : jpmcb/prow-github-actions@v2.0.0
9+ with :
10+ jobs : lgtm
11+ github-token : ' ${{ secrets.GITHUB_TOKEN }}'
Original file line number Diff line number Diff line change 1+ name : Re-Run PR tests
2+
3+ on :
4+ issue_comment :
5+ types : [created]
6+
7+ jobs :
8+ rerun_pr_tests :
9+ name : rerun_pr_tests
10+ if : ${{ github.event.issue.pull_request }}
11+ runs-on : ubuntu-20.04
12+ steps :
13+ - uses : estroz/rerun-actions@main
14+ with :
15+ repo_token : ${{ secrets.GITHUB_TOKEN }}
16+ comment_id : ${{ github.event.comment.id }}
Original file line number Diff line number Diff line change 1+ # Labels for labeling issues and pull requests using GitHub prow action.
2+ kind :
3+ - ' bug'
4+ - ' security'
5+ - ' feature'
6+ - ' docs'
7+
8+ priority :
9+ - ' p0'
10+ - ' p1'
11+ - ' p2'
Original file line number Diff line number Diff line change 1+ approvers:
2+ - llm-d-inference-scheduler-maintainers
3+
4+ reviewers:
5+ - llm-d-inference-scheduler-reviewers
Original file line number Diff line number Diff line change 1+ # See the OWNERS docs: https://git.k8s.io/community/contributors/guide/owners.md
2+ # This file should be kept in sync with k/org.
3+
4+ aliases:
5+ llm-d-inference-scheduler-maintainers:
6+ - elevran
7+ - kfirtoledo
8+ - kfswain
9+ - nilig
10+ - nirrozenbaum
11+ - shmuelk
12+
13+ llm-d-inference-scheduler-reviewers:
14+ - elevran
15+ - kfirtoledo
16+ - kfswain
17+ - nilig
18+ - nirrozenbaum
19+ - shmuelk
You can’t perform that action at this time.
0 commit comments