Skip to content

Commit

Permalink
optimization actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Zzm0809 committed Jan 25, 2024
1 parent 69210bf commit f3e2f2e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/add-assignees.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
assign-k8s-problem-to-developer:
runs-on: ubuntu-latest
if: contains(github.event.issue.title, 'k8s') == true || contains(github.event.issue.title, 'kubernetes') == true
if: contains(github.event.issue.title, 'k8s') == true || contains(github.event.issue.title, 'kubernetes') == true || contains(github.event.issue.body, 'kubernetes') == true
steps:
- name: assign problem to developer of k8s
uses: actions-cool/issues-helper@v3
Expand All @@ -64,7 +64,7 @@ jobs:
assign-web-problem-to-developer:
runs-on: ubuntu-latest
if: contains(github.event.issue.title, 'web') == true
if: contains(github.event.issue.title, 'web') == true || contains(github.event.issue.body, 'web') == true
steps:
- name: assign problem to developer of web
uses: actions-cool/issues-helper@v3
Expand All @@ -85,7 +85,7 @@ jobs:
assign-cdc-problem-to-developer:
runs-on: ubuntu-latest
if: contains(github.event.issue.title, 'cdc') == true || contains(github.event.issue.title, 'CDCSOURCE') == true
if: contains(github.event.issue.title, 'cdc') == true || contains(github.event.issue.title, 'cdcsource') == true || contains(github.event.issue.body, 'cdcsource') == true
steps:
- name: assign problem to developer of cdc and cdcsource
uses: actions-cool/issues-helper@v3
Expand All @@ -100,6 +100,6 @@ jobs:
actions: 'create-comment'
issue-number: ${{ github.event.issue.number }}
body: |
Hello, this issue is about CDC, so I assign it to @aiwenmo. If you have any questions, you can comment and reply.
Hello, this issue is about CDC/CDCSOURCE, so I assign it to @aiwenmo. If you have any questions, you can comment and reply.
你好, 这个 issue 是关于 CDC/CDCSOURCE 的,所以我把它分配给了 @aiwenmo。如有任何问题,可以评论回复。

0 comments on commit f3e2f2e

Please sign in to comment.