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]
|
types: [labeled, unlabeled]
|
||||||
issue_comment:
|
issue_comment:
|
||||||
types: [created]
|
types: [created]
|
||||||
|
concurrency:
|
||||||
|
group: issue-commands-${{ github.event.issue.number }}
|
||||||
jobs:
|
jobs:
|
||||||
main:
|
main:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
3
.github/workflows/pr-checks.yml
vendored
3
.github/workflows/pr-checks.yml
vendored
@@ -12,7 +12,8 @@ on:
|
|||||||
types:
|
types:
|
||||||
- milestoned
|
- milestoned
|
||||||
- demilestoned
|
- demilestoned
|
||||||
|
concurrency:
|
||||||
|
group: pr-checks-${{ github.event.issue.number }}
|
||||||
jobs:
|
jobs:
|
||||||
main:
|
main:
|
||||||
runs-on: ubuntu-latest
|
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:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- closed
|
- closed
|
||||||
|
concurrency:
|
||||||
|
group: pr-commands-closed-${{ github.event.issue.number }}
|
||||||
jobs:
|
jobs:
|
||||||
close_job:
|
close_job:
|
||||||
# this job will only run if the PR has been closed without being merged
|
# 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:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- synchronize
|
- synchronize
|
||||||
|
concurrency:
|
||||||
|
group: pr-commands-${{ github.event.issue.number }}
|
||||||
jobs:
|
jobs:
|
||||||
main:
|
main:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
Reference in New Issue
Block a user