diff --git a/.github/workflows/ci-e2e.yml b/.github/workflows/ci-e2e.yml index c7c20d69d7fc8..434ef1e41d260 100644 --- a/.github/workflows/ci-e2e.yml +++ b/.github/workflows/ci-e2e.yml @@ -7,6 +7,8 @@ name: E2E CI on: pull_request: + paths: + - 'x' concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} diff --git a/.github/workflows/ci-frontend.yml b/.github/workflows/ci-frontend.yml index 3ee4201cfe97f..fca66858988c7 100644 --- a/.github/workflows/ci-frontend.yml +++ b/.github/workflows/ci-frontend.yml @@ -1,7 +1,7 @@ name: Frontend CI on: - pull_request: + # pull_request: push: branches: - master diff --git a/.github/workflows/rust-docker-build.yml b/.github/workflows/rust-docker-build.yml index 02eee99727b09..fae53bdae27ce 100644 --- a/.github/workflows/rust-docker-build.yml +++ b/.github/workflows/rust-docker-build.yml @@ -2,11 +2,14 @@ name: Build container images on: workflow_dispatch: + pull_request: + paths: + - 'rust/**' push: paths: - 'rust/**' branches: - - 'main' + - 'master' jobs: build: diff --git a/.github/workflows/rust-hook-migrator-docker.yml b/.github/workflows/rust-hook-migrator-docker.yml index 7a25a0083aa58..63b4e8ab3e56b 100644 --- a/.github/workflows/rust-hook-migrator-docker.yml +++ b/.github/workflows/rust-hook-migrator-docker.yml @@ -6,7 +6,7 @@ on: paths: - 'rust/**' branches: - - 'main' + - 'master' permissions: packages: write diff --git a/.github/workflows/storybook-chromatic.yml b/.github/workflows/storybook-chromatic.yml index 2a2fa5e4d6d72..aeebf6f894913 100644 --- a/.github/workflows/storybook-chromatic.yml +++ b/.github/workflows/storybook-chromatic.yml @@ -3,10 +3,10 @@ name: Storybook on: pull_request: paths: # Only run if the frontend has changed - - 'frontend/**' + # - 'frontend/**' - '.storybook/**' - 'package.json' - - '.github/workflows/storybook-chromatic.yml' + # - '.github/workflows/storybook-chromatic.yml' concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}