Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed Github Actions concurrency keys #39

Merged
merged 3 commits into from
Jun 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/continuous-delivery.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Continuous delivery workflow
run-name: Deploying website to the production environment
concurrency: continuous-delivery
concurrency: continuous-delivery-${{ github.ref_name }}

on:
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration-cloud.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Continuous integration workflow for XPRTZ.cloud
run-name: Continuous Integration - XPRTZ.cloud - ${{ github.ref_name }}
concurrency: ci-cloud
concurrency: ci-cloud-${{ github.ref_name }}

on:
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration-dotnet.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Continuous integration workflow for XPRTZ.net
run-name: Continuous Integration - XPRTZ.net - ${{ github.ref_name }}
concurrency: ci-dotnet
concurrency: ci-dotnet-${{ github.ref_name }}

on:
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Pull request workflow
run-name: Running pull request flow for ${{ github.head_ref }}
concurrency: pull-request
concurrency: pull-request-${{ github.ref_name }}

on:
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-apply-infrastructure.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "[Reusable workflow] Apply Bicep infrastructure"
concurrency: apply-infrastructure
concurrency: apply-infrastructure-${{ github.ref_name }}

on:
workflow_call:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build-application.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "[Reusable workflow] Build application"
run-name: Building application for ${{ inputs.application }}
concurrency: build-${{ inputs.application }}
concurrency: build-${{ inputs.application }}-${{ github.ref_name }}

on:
workflow_call:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-deploy-application.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "[Reusable workflow] Deploy application"
run-name: Deploying application for ${{ inputs.application }}
concurrency: deploy-${{ inputs.application }}
concurrency: deploy-${{ inputs.application }}-${{ github.ref_name }}

on:
workflow_call:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-destroy-infrastructure.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "[Reusable workflow] Destroy infrastructure"
concurrency: destroy-infrastructure
concurrency: destroy-infrastructure-${{ github.ref_name }}

on:
workflow_call:
Expand Down