diff --git a/.github/workflows/ci-tests-fabric.yml b/.github/workflows/ci-tests-fabric.yml index a765f973f97d7d..9127e1295982a4 100644 --- a/.github/workflows/ci-tests-fabric.yml +++ b/.github/workflows/ci-tests-fabric.yml @@ -3,10 +3,9 @@ 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: ["*"] paths: - ".actions/*" - "requirements/ci.txt" diff --git a/.github/workflows/ci-tests-pytorch.yml b/.github/workflows/ci-tests-pytorch.yml index 6f1ce55b8c092b..3fdc362bfffd6e 100644 --- a/.github/workflows/ci-tests-pytorch.yml +++ b/.github/workflows/ci-tests-pytorch.yml @@ -3,10 +3,9 @@ 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: ["*"] paths: - ".actions/*" - "requirements/ci.txt" diff --git a/.github/workflows/docs-build.yml b/.github/workflows/docs-build.yml index 70bbc67703866f..21665ffc1dc113 100644 --- a/.github/workflows/docs-build.yml +++ b/.github/workflows/docs-build.yml @@ -3,11 +3,10 @@ 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: ["*"] paths: - ".actions/*" - ".github/workflows/docs-build.yml"