diff --git a/.github/workflows/build_tests.yml b/.github/workflows/build_tests.yml index cc05bacff3b..78244f18f4a 100644 --- a/.github/workflows/build_tests.yml +++ b/.github/workflows/build_tests.yml @@ -5,10 +5,6 @@ name: Build Tests on: workflow_dispatch: pull_request: - push: - branches: - # Push events on develop branch - - develop concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} diff --git a/.github/workflows/code_coverage.yml b/.github/workflows/code_coverage.yml index 276f2841312..d041f783c97 100644 --- a/.github/workflows/code_coverage.yml +++ b/.github/workflows/code_coverage.yml @@ -6,10 +6,6 @@ name: Code Coverage # events or push events in the develop branch. on: pull_request: - push: - branches: - # Push events on develop branch - - develop concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} diff --git a/.github/workflows/comment_coverage_report.yml b/.github/workflows/comment_coverage_report.yml index 54b7376e69e..c51a6904190 100644 --- a/.github/workflows/comment_coverage_report.yml +++ b/.github/workflows/comment_coverage_report.yml @@ -41,11 +41,11 @@ jobs: permissions: pull-requests: write - # The expression if: ${{ !cancelled() && needs.check_code_coverage_completed.outputs.conclusion != 'action_required' }} - # ensures that this job only runs if the previous job was not cancelled and does not require manual approval. + # The expression if: ${{ !cancelled() && needs.check_code_coverage_completed.outputs.conclusion != 'action_required' }} + # ensures that this job only runs if the previous job was not cancelled and does not require manual approval. # This check prevents running the job unnecessarily when a manual approval is needed. if: | - !cancelled() && + !cancelled() && needs.check_code_coverage_completed.outputs.conclusion != 'action_required' runs-on: ubuntu-latest steps: @@ -88,4 +88,4 @@ jobs: uses: peter-evans/create-or-update-comment@v4 with: issue-number: ${{ github.event.pull_request.number }} - body-path: 'CoverageReport.md' + body-path: 'CoverageReport.md' \ No newline at end of file diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f5ba874970e..28f14b86ea3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,10 +7,6 @@ name: Unit Tests (Robolectric -- Gradle) on: workflow_dispatch: pull_request: - push: - branches: - # Push events on develop branch - - develop concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} diff --git a/.github/workflows/static_checks.yml b/.github/workflows/static_checks.yml index ae04da9c0f4..715996f85fe 100644 --- a/.github/workflows/static_checks.yml +++ b/.github/workflows/static_checks.yml @@ -4,10 +4,6 @@ name: Static Checks on: workflow_dispatch: - pull_request: - push: - branches: - - develop concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 82833edfede..060cbadee26 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -6,11 +6,6 @@ name: Unit Tests (Robolectric - Bazel) # events or push events in the develop branch. on: workflow_dispatch: - pull_request: - push: - branches: - # Push events on develop branch - - develop concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} diff --git a/.github/workflows/wiki.yml b/.github/workflows/wiki.yml index 57f63fe6fb7..60f41d610a0 100644 --- a/.github/workflows/wiki.yml +++ b/.github/workflows/wiki.yml @@ -3,9 +3,6 @@ on: pull_request: paths: - 'wiki/**' - push: - branches: - - develop paths: - 'wiki/**' # Triggers this workflow when the wiki is changed.