Skip to content

Commit

Permalink
chore: add issue comment action (#2285)
Browse files Browse the repository at this point in the history
* chore: add issue comment action

Signed-off-by: zirain <[email protected]>

* lint

Signed-off-by: zirain <[email protected]>

* update

Signed-off-by: zirain <[email protected]>

* lint

Signed-off-by: zirain <[email protected]>

---------

Signed-off-by: zirain <[email protected]>
  • Loading branch information
zirain authored Dec 21, 2023
1 parent 9541739 commit 0a936c0
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/issue-comment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
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/[email protected]
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 0a936c0

Please sign in to comment.