diff --git a/.github/workflows/macos11.yml b/.github/workflows/macos11.yml index 6a15c418a..c6ecb73b0 100644 --- a/.github/workflows/macos11.yml +++ b/.github/workflows/macos11.yml @@ -8,14 +8,10 @@ on: CUSTOM_REPOSITORY_COMMIT_HASH: description: 'Commit hash' required: false - pull_request_target: - types: labeled - paths: - - 'images/macos/**' jobs: macOS_11: - if: contains(github.event.pull_request.labels.*.name, 'CI macos-all') || contains(github.event.pull_request.labels.*.name, 'CI macos-11') || (github.event_name == 'workflow_dispatch') || (github.event_name == 'schedule') + if: (github.event_name == 'workflow_dispatch') || (github.event_name == 'schedule') name: macOS-11_unstable.${{ github.run_id }}.${{ github.run_attempt }} uses: ./.github/workflows/macos-generation.yml with: diff --git a/.github/workflows/macos12.yml b/.github/workflows/macos12.yml index b12e15f22..1504ab07d 100644 --- a/.github/workflows/macos12.yml +++ b/.github/workflows/macos12.yml @@ -8,14 +8,10 @@ on: CUSTOM_REPOSITORY_COMMIT_HASH: description: 'Commit hash' required: false - pull_request_target: - types: labeled - paths: - - 'images/macos/**' jobs: macOS_12: - if: contains(github.event.pull_request.labels.*.name, 'CI macos-all') || contains(github.event.pull_request.labels.*.name, 'CI macos-12') || (github.event_name == 'workflow_dispatch') || (github.event_name == 'schedule') + if: (github.event_name == 'workflow_dispatch') || (github.event_name == 'schedule') name: macOS-12_unstable.${{ github.run_id }}.${{ github.run_attempt }} uses: ./.github/workflows/macos-generation.yml with: diff --git a/.github/workflows/ubuntu2004.yml b/.github/workflows/ubuntu2004.yml index 534b33654..ffc88cf10 100644 --- a/.github/workflows/ubuntu2004.yml +++ b/.github/workflows/ubuntu2004.yml @@ -8,14 +8,10 @@ on: CUSTOM_REPOSITORY_COMMIT_HASH: description: 'Commit hash' required: false - pull_request_target: - types: labeled - paths: - - 'images/linux/**' jobs: Ubuntu_2004: - if: contains(github.event.pull_request.labels.*.name, 'CI ubuntu-all') || contains(github.event.pull_request.labels.*.name, 'CI ubuntu-2004') || (github.event_name == 'workflow_dispatch') || (github.event_name == 'schedule') + if: (github.event_name == 'workflow_dispatch') || (github.event_name == 'schedule') uses: ./.github/workflows/ubuntu-win-generation.yml with: image_name: 'ubuntu2004' diff --git a/.github/workflows/ubuntu2204.yml b/.github/workflows/ubuntu2204.yml index 92fa85f53..cd11693f3 100644 --- a/.github/workflows/ubuntu2204.yml +++ b/.github/workflows/ubuntu2204.yml @@ -8,14 +8,10 @@ on: CUSTOM_REPOSITORY_COMMIT_HASH: description: 'Commit hash' required: false - pull_request_target: - types: labeled - paths: - - 'images/linux/**' jobs: Ubuntu_2204: - if: contains(github.event.pull_request.labels.*.name, 'CI ubuntu-all') || contains(github.event.pull_request.labels.*.name, 'CI ubuntu-2204') || (github.event_name == 'workflow_dispatch') || (github.event_name == 'schedule') + if: (github.event_name == 'workflow_dispatch') || (github.event_name == 'schedule') uses: ./.github/workflows/ubuntu-win-generation.yml with: image_name: 'ubuntu2204' diff --git a/.github/workflows/windows2019.yml b/.github/workflows/windows2019.yml index ae1d4a421..3df371d91 100644 --- a/.github/workflows/windows2019.yml +++ b/.github/workflows/windows2019.yml @@ -8,14 +8,10 @@ on: CUSTOM_REPOSITORY_COMMIT_HASH: description: 'Commit hash' required: false - pull_request_target: - types: labeled - paths: - - 'images/win/**' jobs: Windows_2019: - if: contains(github.event.pull_request.labels.*.name, 'CI windows-all') || contains(github.event.pull_request.labels.*.name, 'CI windows-2019') || (github.event_name == 'workflow_dispatch') || (github.event_name == 'schedule') + if: (github.event_name == 'workflow_dispatch') || (github.event_name == 'schedule') uses: ./.github/workflows/ubuntu-win-generation.yml with: image_name: 'windows2019' diff --git a/.github/workflows/windows2022.yml b/.github/workflows/windows2022.yml index bf54836b7..a456c224f 100644 --- a/.github/workflows/windows2022.yml +++ b/.github/workflows/windows2022.yml @@ -8,14 +8,10 @@ on: CUSTOM_REPOSITORY_COMMIT_HASH: description: 'Commit hash' required: false - pull_request_target: - types: labeled - paths: - - 'images/win/**' jobs: Windows_2022: - if: contains(github.event.pull_request.labels.*.name, 'CI windows-all') || contains(github.event.pull_request.labels.*.name, 'CI windows-2022') || (github.event_name == 'workflow_dispatch') || (github.event_name == 'schedule') + if: (github.event_name == 'workflow_dispatch') || (github.event_name == 'schedule') uses: ./.github/workflows/ubuntu-win-generation.yml with: image_name: 'windows2022'