Skip to content

Commit

Permalink
ci: Add concurrency option
Browse files Browse the repository at this point in the history
  • Loading branch information
JiwonKKang committed Dec 5, 2024
1 parent c04cbc6 commit 9671517
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/game-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
paths:
- 'game-service/**'

concurrency:
group: ${{ github.ref }}
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/gateway-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
paths:
- 'gateway-service/**'

concurrency:
group: ${{ github.ref }}
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/matching-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
paths:
- 'matching-service/**'

concurrency:
group: ${{ github.ref }}
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/quiz-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
paths:
- 'quiz-service/**'

concurrency:
group: ${{ github.ref }}
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/user-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
paths:
- 'user-service/**'

concurrency:
group: ${{ github.ref }}
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-actuator")

//swagger
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0")

implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
Expand Down
3 changes: 1 addition & 2 deletions user-service/user-application/app-api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ dependencies {

implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-actuator")

//swagger

implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0")

// JWT
Expand Down

0 comments on commit 9671517

Please sign in to comment.