Skip to content

Commit

Permalink
chore: add issue commands (#3693)
Browse files Browse the repository at this point in the history
Signed-off-by: yuluo-yx <yuluo08290126@gmail.com>
  • Loading branch information
yuluo-yx authored Apr 25, 2024
1 parent 2169c9c commit 257bc14
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
area:
- 'ai'
- 'ci'
- 'nacos'
- 'sentinel'
- 'rocketmq'
- 'community'
- 'example'
- 'seata'
- 'openSergo'
- 'spring cloud'
- 'testing'

kind:
- 'bug'
- 'chore'
- 'discussion'
- 'documention'
- 'question'
- 'refactor'
- 'invalid'
- 'enhancement'

34 changes: 34 additions & 0 deletions .github/workflows/issue-command.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Issue and PR comment commands

permissions: {}

on:
issue_comment:
types:
- created
- edited

jobs:
execute:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: jpmcb/prow-github-actions@f4d01dd4b13f289014c23fe5a19878a2479cb35b # v1.1.3
with:
prow-commands: '/assign
/unassign
/area
/kind
/priority
/remove
/close
/reopen
/lock
/milestone
/hold
/cc
/uncc'
github-token: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 257bc14

Please sign in to comment.