mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fix(github_actions): workflow execution concurrency is now limited to 1 (#45125)
This commit is contained in:
3
.github/workflows/commands.yml
vendored
3
.github/workflows/commands.yml
vendored
@@ -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
|
||||
|
||||
3
.github/workflows/pr-checks.yml
vendored
3
.github/workflows/pr-checks.yml
vendored
@@ -12,7 +12,8 @@ on:
|
||||
types:
|
||||
- milestoned
|
||||
- demilestoned
|
||||
|
||||
concurrency:
|
||||
group: pr-checks-${{ github.event.issue.number }}
|
||||
jobs:
|
||||
main:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
3
.github/workflows/pr-commands-closed.yml
vendored
3
.github/workflows/pr-commands-closed.yml
vendored
@@ -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
|
||||
|
||||
3
.github/workflows/pr-commands.yml
vendored
3
.github/workflows/pr-commands.yml
vendored
@@ -4,7 +4,8 @@ on:
|
||||
types:
|
||||
- opened
|
||||
- synchronize
|
||||
|
||||
concurrency:
|
||||
group: pr-commands-${{ github.event.issue.number }}
|
||||
jobs:
|
||||
main:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
Reference in New Issue
Block a user