Skip to content

Commit

Permalink
feat: limit build concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
Gowtham1729 committed Nov 6, 2023
1 parent 9d67187 commit ea14134
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
paths:
- "applications/backend/**"

concurrency:
group: build-group
cancel-in-progress: false

env:
PROJECT_ID: ${{ secrets.GKE_PROJECT }}
GAR_LOCATION: us-central1
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
paths:
- "applications/frontend/**"

concurrency:
group: build-group
cancel-in-progress: false

env:
PROJECT_ID: ${{ secrets.GKE_PROJECT }}
GAR_LOCATION: us-central1
Expand Down
2 changes: 1 addition & 1 deletion applications/backend/django_server/news/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
def index(request):
return JsonResponse(
{
"message": "Hello, world!",
"message": "Hello, world!!",
"status": "ok",
}
)
2 changes: 1 addition & 1 deletion applications/frontend/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<h3>This nuxt js website is hosted on Google Cloud Platform</h3>

<div>
<input v-model="userInput" placeholder="Please enter something..."/>
<input v-model="userInput" placeholder="Please enter something...."/>

<button @click="addInputToList">OK</button>
</div>
Expand Down

0 comments on commit ea14134

Please sign in to comment.