Skip to content

Commit

Permalink
chore: update user limit in auto-comment-issue
Browse files Browse the repository at this point in the history
  • Loading branch information
xile611 committed Dec 6, 2024
1 parent ff53d57 commit e295236
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/auto-comment-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: new feature
if: ${{ contains(github.event.issue.title, 'Feature') }} || ${{ contains(github.event.issue.title, 'Feat') }} || ${{ contains(github.event.issue.title, '新特性') }}
if: ${{ (contains(github.event.issue.title, 'Feature') || contains(github.event.issue.title, 'Feat') || contains(github.event.issue.title, '新特性')) && !github.event.issue.user.site_admin }}
uses: actions-cool/issues-helper@v2
with:
actions: 'create-comment'
Expand All @@ -29,7 +29,7 @@ jobs:
再次感谢您的支持!
- name: doc
if: ${{ contains(github.event.issue.title, 'Documentation') }} || ${{ contains(github.event.issue.title, 'Doc') }} || ${{ contains(github.event.issue.title, '文档') }}
if: ${{ (contains(github.event.issue.title, 'Documentation') || contains(github.event.issue.title, 'Doc') || contains(github.event.issue.title, '文档')) && !github.event.issue.user.site_admin }}
uses: actions-cool/issues-helper@v2
with:
actions: 'create-comment'
Expand Down

0 comments on commit e295236

Please sign in to comment.