Skip to content

Commit

Permalink
Merge pull request #115 from Muska-Ami/dev
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
Muska-Ami authored Mar 22, 2024
2 parents 34e6a5d + 6822ab5 commit dbf916d
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit dbf916d

Please sign in to comment.