Skip to content
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
4 changes: 4 additions & 0 deletions .github/workflows/addressables-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ on:
default: false
type: boolean

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

env:
R2_BUCKET_NAME: unity6-portfolio
R2_CUSTOM_DOMAIN: rei-unity6-portfolio.com
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ on:
- 'src/Game.Client/.editorconfig'
- '.github/workflows/code-quality.yml'

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

jobs:
# ============================================
# フォーマットチェック(軽量・高速)
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pr-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
- '.editorconfig'
- 'src/Game.Client/.editorconfig'

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

jobs:
# ============================================
# 変更ファイル分析
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/server-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ on:
- 'test/Game.Realtime.Tests/**'
- '.github/workflows/server-test.yml'

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

env:
DOTNET_VERSION: '9.0.x'
DOTNET_NOLOGO: true
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/unity-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ on:
- Review
- Release

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

jobs:
# ============================================
# 設定読み込み
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/unity-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ on:
- '.github/workflows/unity-test.yml'
- '.github/unity-ci.ini'

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

jobs:
# ============================================
# 設定読み込み
Expand Down
Loading