Skip to content

Commit ad3480b

Browse files
committed
Enhance devcontainer configuration and update GitHub Actions workflow for concurrency management
1 parent 72f66b2 commit ad3480b

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.devcontainer/devcontainer.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@
1212
"settings": {
1313
"terminal.integrated.shell.linux": "/bin/bash",
1414
"python.defaultInterpreterPath": "/usr/local/bin/python",
15-
"git.repositoryScanMaxDepth": 2
15+
"git.repositoryScanMaxDepth": 2,
16+
"search.exclude": {
17+
"*.po": true,
18+
"*.pot": true
19+
}
1620
},
1721
"extensions": [
1822
"ms-azuretools.vscode-docker",

.github/workflows/test-build.yml

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ on:
66
branches:
77
- "16.0"
88
workflow_dispatch:
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
914
jobs:
1015
build:
1116
uses: ./.github/workflows/build-and-push.yml

0 commit comments

Comments
 (0)