diff --git a/.github/workflows/build_minimum_supported_swift_platforms.yml b/.github/workflows/build_minimum_supported_swift_platforms.yml index 7f6052abfc..d70d5ece35 100644 --- a/.github/workflows/build_minimum_supported_swift_platforms.yml +++ b/.github/workflows/build_minimum_supported_swift_platforms.yml @@ -1,9 +1,9 @@ name: Build with minimum Xcode version | Amplify Swift on: workflow_dispatch: - pull_request: - branches: - - main + # pull_request: + # branches: + # - main push: branches: - main diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 8084087bc4..c1cf6796d9 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -5,11 +5,11 @@ on: branches: - main - v1 - pull_request: - # The branches below must be a subset of the branches above - branches: - - main - - v1 + # pull_request: + # # The branches below must be a subset of the branches above + # branches: + # - main + # - v1 schedule: # ┌───────────── minute (0 - 59) # │ ┌───────────── hour (0 - 23) diff --git a/.github/workflows/integ_test_push_notifications.yml b/.github/workflows/integ_test_push_notifications.yml index 10e403811a..c0dd428c47 100644 --- a/.github/workflows/integ_test_push_notifications.yml +++ b/.github/workflows/integ_test_push_notifications.yml @@ -68,6 +68,7 @@ jobs: node-version: 16.x - name: Attempt to use the dependencies cache + if: false id: dependencies-cache timeout-minutes: 4 continue-on-error: true @@ -80,6 +81,7 @@ jobs: - name: Attempt to restore the build cache id: build-cache + if: false timeout-minutes: 4 continue-on-error: true uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 diff --git a/.github/workflows/run_integration_tests.yml b/.github/workflows/run_integration_tests.yml index 21577fc43c..01e6f324cf 100644 --- a/.github/workflows/run_integration_tests.yml +++ b/.github/workflows/run_integration_tests.yml @@ -4,7 +4,7 @@ on: inputs: os-runner: type: string - default: 'macos-13' + default: 'macos-latest' scheme: description: 'The scheme to run the tests' required: true @@ -18,7 +18,7 @@ on: type: string xcode_version: description: 'The version of Xcode used to run these tests' - default: 'minimum' + default: 'latest' type: string destination: default: '' @@ -71,6 +71,7 @@ jobs: - name: Attempt to use the dependencies cache id: dependencies-cache + if: false timeout-minutes: 4 continue-on-error: true uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 @@ -82,6 +83,7 @@ jobs: - name: Attempt to restore the build cache id: build-cache + if: false timeout-minutes: 4 continue-on-error: true uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 diff --git a/.github/workflows/unit_test.yml b/.github/workflows/unit_test.yml index 454c08bec9..7ae6fadfdb 100644 --- a/.github/workflows/unit_test.yml +++ b/.github/workflows/unit_test.yml @@ -28,10 +28,10 @@ on: required: true default: true type: boolean - push: - branches-ignore: - - main - - release + # push: + # branches-ignore: + # - main + # - release permissions: contents: read @@ -108,7 +108,7 @@ jobs: if: ${{ !cancelled() }} needs: [ targets-with-coverage, - targets-without-coverage + # targets-without-coverage ] env: EXIT_CODE: ${{ contains(needs.*.result, 'failure') && 1 || 0 }}