diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml index 85deafa8245..eea2f09efc4 100644 --- a/.github/workflows/auto-update.yml +++ b/.github/workflows/auto-update.yml @@ -3,7 +3,6 @@ name: Auto-update on: push: branches: - - dev - main jobs: diff --git a/.github/workflows/js_autofix.yml b/.github/workflows/js_autofix.yml index f6501baab88..d6e3c0097ea 100644 --- a/.github/workflows/js_autofix.yml +++ b/.github/workflows/js_autofix.yml @@ -2,11 +2,7 @@ name: autofix.ci on: pull_request: - types: [opened, synchronize, reopened, auto_merge_enabled, auto_merge_disabled] - paths: - - "src/frontend/**" - push: - branches: [ "main" ] + types: [opened, synchronize, reopened, auto_merge_enabled] paths: - "src/frontend/**" diff --git a/.github/workflows/lint-js.yml b/.github/workflows/lint-js.yml index ae83dddfa29..07f8a0bc064 100644 --- a/.github/workflows/lint-js.yml +++ b/.github/workflows/lint-js.yml @@ -5,6 +5,9 @@ on: paths: - "src/frontend/**" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true env: NODE_VERSION: "21" diff --git a/.github/workflows/lint-py.yml b/.github/workflows/lint-py.yml index 233131b2fa2..d1b117a710e 100644 --- a/.github/workflows/lint-py.yml +++ b/.github/workflows/lint-py.yml @@ -2,10 +2,14 @@ name: Lint Python on: pull_request: - types: [opened, synchronize, reopened] + types: [opened, synchronize, reopened, auto_merge_enabled] env: POETRY_VERSION: "1.8.2" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: lint: name: Run Mypy diff --git a/.github/workflows/py_autofix.yml b/.github/workflows/py_autofix.yml index 0df6b44b221..0ce1eecd475 100644 --- a/.github/workflows/py_autofix.yml +++ b/.github/workflows/py_autofix.yml @@ -1,7 +1,7 @@ name: autofix.ci on: pull_request: - types: [opened, synchronize, reopened, auto_merge_enabled, auto_merge_disabled] + types: [opened, synchronize, reopened, auto_merge_enabled] paths: - "poetry.lock" - "pyproject.toml" diff --git a/.github/workflows/python_test.yml b/.github/workflows/python_test.yml index 1cefbe639d9..e6db706e829 100644 --- a/.github/workflows/python_test.yml +++ b/.github/workflows/python_test.yml @@ -2,11 +2,15 @@ name: Python tests on: pull_request: - types: [opened, synchronize, reopened] + types: [opened, synchronize, reopened, auto_merge_enabled] branches: [main] env: POETRY_VERSION: "1.8.2" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: build: name: Run Unit Tests diff --git a/.github/workflows/style-check-py.yml b/.github/workflows/style-check-py.yml index 4357b273fc9..1264b61013d 100644 --- a/.github/workflows/style-check-py.yml +++ b/.github/workflows/style-check-py.yml @@ -2,7 +2,11 @@ name: Ruff Style Check on: pull_request: - types: [opened, synchronize, reopened] + types: [opened, synchronize, reopened, auto_merge_enabled] + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true env: POETRY_VERSION: "1.8.2" diff --git a/.github/workflows/typescript_test.yml b/.github/workflows/typescript_test.yml index ecf4aed9484..0684a974ceb 100644 --- a/.github/workflows/typescript_test.yml +++ b/.github/workflows/typescript_test.yml @@ -8,8 +8,11 @@ on: required: false type: string pull_request: - types: [opened, synchronize, reopened] + types: [opened, synchronize, reopened, auto_merge_enabled] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true env: POETRY_VERSION: "1.8.3"