diff --git a/.github/workflows/ci-tests-fabric.yml b/.github/workflows/ci-tests-fabric.yml index a765f973f97d7d..042790b6a73eea 100644 --- a/.github/workflows/ci-tests-fabric.yml +++ b/.github/workflows/ci-tests-fabric.yml @@ -3,10 +3,10 @@ name: Test Fabric # see: https://help.github.com/en/actions/reference/events-that-trigger-workflows on: push: - branches: [master, "release/*"] + branches: ["*"] pull_request: - branches: [master, "release/*"] - types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped + branches: ["*"] + types: [opened, synchronize, reopened] paths: - ".actions/*" - "requirements/ci.txt" diff --git a/.github/workflows/ci-tests-pytorch.yml b/.github/workflows/ci-tests-pytorch.yml index 6f1ce55b8c092b..c9f6e3178106d8 100644 --- a/.github/workflows/ci-tests-pytorch.yml +++ b/.github/workflows/ci-tests-pytorch.yml @@ -3,10 +3,10 @@ name: Test PyTorch # see: https://help.github.com/en/actions/reference/events-that-trigger-workflows on: push: - branches: [master, "release/*"] + branches: ["*"] pull_request: - branches: [master, "release/*"] - types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped + branches: ["*"] + types: [opened, synchronize, reopened] paths: - ".actions/*" - "requirements/ci.txt" diff --git a/.github/workflows/docs-build.yml b/.github/workflows/docs-build.yml index 70bbc67703866f..087ffa9c2da92d 100644 --- a/.github/workflows/docs-build.yml +++ b/.github/workflows/docs-build.yml @@ -3,11 +3,11 @@ name: Docs builds on: push: - branches: ["master", "release/*"] + branches: ["*"] tags: ["*"] pull_request: - branches: ["master", "release/*"] - types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped + branches: ["*"] + types: [opened, synchronize, reopened] paths: - ".actions/*" - ".github/workflows/docs-build.yml"