Skip to content

Commit

Permalink
fix(ci): pipelines concurrency (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeromanowicz authored Apr 24, 2023
1 parent 1c8259f commit eb8cfe5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev-pipeline-mainnet.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Develop pipelines
name: Develop pipelines - mainnet

on:
push:
Expand All @@ -9,7 +9,7 @@ env:
ENV: "dev"
APP: "aescan"

concurrency: aescan_develop_environment
concurrency: aescan_develop_environment-${{ github.ref }}

jobs:
main:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dev-pipeline-testnet.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Develop pipelines
name: Develop pipelines - testnet

on:
push:
Expand All @@ -9,7 +9,7 @@ env:
ENV: "dev"
APP: "aescan-testnet"

concurrency: aescan_develop_environment
concurrency: aescan_develop_environment-${{ github.ref }}

jobs:
main:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prd-pipeline-mainnet.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Production pipelines
name: Production pipelines - mainnet

on:
push:
Expand All @@ -9,7 +9,7 @@ env:
ENV: "prd"
APP: "aescan"

concurrency: aescan_production_environment
concurrency: aescan_production_environment-${{ github.ref }}

jobs:
main:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prd-pipeline-testnet.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Production pipelines
name: Production pipelines - testnet

on:
push:
Expand All @@ -9,7 +9,7 @@ env:
ENV: "prd"
APP: "aescan-testnet"

concurrency: aescan_production_environment
concurrency: aescan_production_environment-${{ github.ref }}

jobs:
main:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stg-pipeline-mainnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
ENV: "stg"
APP: "aescan"

concurrency: aescan_staging_environment
concurrency: aescan_staging_environment-${{ github.ref }}

jobs:
main:
Expand Down

0 comments on commit eb8cfe5

Please sign in to comment.