Skip to content

Commit

Permalink
fix: 将拉取请求和相关议题放在同一个并发组 (#347)
Browse files Browse the repository at this point in the history
  • Loading branch information
he0119 authored Jan 8, 2025
1 parent a7089e5 commit 66bdadc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/noneflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ name: NoneFlow
on:
issues:
types: [opened, reopened, edited]
pull_request_target:
types: [closed]
issue_comment:
types: [created]
pull_request_target:
types: [closed]
pull_request_review:
types: [submitted]

concurrency:
group: ${{ github.workflow }}-${{ github.event.issue.number || github.run_id }}
cancel-in-progress: false
group: ${{ github.workflow }}-${{ github.event.issue.number && format('publish/issue{0}', github.event.issue.number) || github.head_ref || github.run_id }}
cancel-in-progress: ${{ startsWith(github.head_ref, 'publish/issue')}}

jobs:
noneflow:
Expand Down

0 comments on commit 66bdadc

Please sign in to comment.