fix(github_actions): workflow execution concurrency is now limited to 1 (#45125)

pull/45233/head
Timur Olzhabayev 3 years ago committed by GitHub
parent e7605ad974
commit a771cbd871
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      .github/workflows/commands.yml
  2. 3
      .github/workflows/pr-checks.yml
  3. 3
      .github/workflows/pr-commands-closed.yml
  4. 3
      .github/workflows/pr-commands.yml

@ -4,7 +4,8 @@ on:
types: [labeled, unlabeled]
issue_comment:
types: [created]
concurrency:
group: issue-commands-${{ github.event.issue.number }}
jobs:
main:
runs-on: ubuntu-latest

@ -12,7 +12,8 @@ on:
types:
- milestoned
- demilestoned
concurrency:
group: pr-checks-${{ github.event.issue.number }}
jobs:
main:
runs-on: ubuntu-latest

@ -3,7 +3,8 @@ on:
pull_request:
types:
- closed
concurrency:
group: pr-commands-closed-${{ github.event.issue.number }}
jobs:
close_job:
# this job will only run if the PR has been closed without being merged

@ -4,7 +4,8 @@ on:
types:
- opened
- synchronize
concurrency:
group: pr-commands-${{ github.event.issue.number }}
jobs:
main:
runs-on: ubuntu-latest

Loading…
Cancel
Save