Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci skip] #115

Merged
merged 2 commits into from
Mar 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/issues-label-autoremove.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
permissions:
issues: write
if: github.event.issue.labels ~= "feedback:等待反馈者"
if: contains(github.event.issue.labels, "feedback:等待反馈者")
steps:
- run: gh issue remove-label ${{ github.event.issue.number }} "feedback:等待反馈者"
env:
Expand All @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
permissions:
issues: write
if: github.event.issue.labels ~= "help wanted:需要帮助"
if: contains(github.event.issue.labels, "help wanted:需要帮助")
steps:
- run: gh issue remove-label ${{ github.event.issue.number }} "help wanted:需要帮助"
env:
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
permissions:
issues: write
if: github.event.issue.labels ~= "done in dev channel:开发通道已完成"
if: contains(github.event.issue.labels, "done in dev channel:开发通道已完成")
steps:
- run: gh issue remove-label ${{ github.event.issue.number }} "done in dev channel:开发通道已完成"
env:
Expand Down