Skip to content

Commit

Permalink
feat(workflow): add prow GitHub action to manage labels (#1072)
Browse files Browse the repository at this point in the history
  • Loading branch information
chengxiangdong authored Nov 27, 2023
1 parent 2d17d17 commit 7f7a32f
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/prow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: "Prow github actions"
on:
issue_comment:
types: [created]

jobs:
execute:
runs-on: ubuntu-latest
steps:
- uses: jpmcb/[email protected]
with:
prow-commands: |
/assign
/unassign
/approve
/retitle
/area
/kind
/priority
/remove
/lgtm
/close
/reopen
/lock
/milestone
/hold
/cc
/uncc
github-token: "${{ secrets.GITHUB_TOKEN }}"
11 changes: 11 additions & 0 deletions OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# List of usernames who may use /lgtm
reviewers:
- chengxiangdong
- niuzhenguo
- shichangkuo

# List of usernames who may use /approve
approvers:
- chengxiangdong
- niuzhenguo
- shichangkuo

0 comments on commit 7f7a32f

Please sign in to comment.