diff --git a/.github/actions/publish-release/action.yml b/.github/actions/publish-release/action.yml index 184683de29..8154916b53 100644 --- a/.github/actions/publish-release/action.yml +++ b/.github/actions/publish-release/action.yml @@ -44,11 +44,6 @@ inputs: runs: using: 'composite' steps: - - name: '📝 Print Inputs' - shell: 'bash' - run: | - echo "${{ toJSON(inputs) }}" - - name: '👤 Configure Git User' working-directory: '${{ inputs.working-directory }}' shell: 'bash' diff --git a/.github/actions/run-tests/action.yml b/.github/actions/run-tests/action.yml index a49b9b9736..12d441cdd0 100644 --- a/.github/actions/run-tests/action.yml +++ b/.github/actions/run-tests/action.yml @@ -2,11 +2,6 @@ name: 'Run Tests' description: 'Runs the preflight checks and integration tests.' inputs: - force_skip_tests: - description: 'Whether to force skip the tests.' - required: false - type: 'string' - default: 'false' gemini_api_key: description: 'The API key for running integration tests.' required: true @@ -19,7 +14,6 @@ runs: using: 'composite' steps: - name: 'Run Tests' - if: "${{ inputs.force_skip_tests != 'true' }}" env: GEMINI_API_KEY: '${{ inputs.gemini_api_key }}' working-directory: '${{ inputs.working-directory }}' diff --git a/.github/workflows/release-manual.yml b/.github/workflows/release-manual.yml index 8bfdd74140..ea158cb666 100644 --- a/.github/workflows/release-manual.yml +++ b/.github/workflows/release-manual.yml @@ -71,9 +71,9 @@ jobs: echo "PREVIOUS_TAG=$(git describe --tags --abbrev=0)" >> "${GITHUB_OUTPUT}" - name: 'Run Tests' + if: "${{github.event.inputs.force_skip_tests != 'true'}}" uses: './.github/actions/run-tests' with: - force_skip_tests: '${{ github.event.inputs.force_skip_tests }}' gemini_api_key: '${{ secrets.GEMINI_API_KEY }}' - name: 'Publish Release' diff --git a/.github/workflows/release-nightly.yml b/.github/workflows/release-nightly.yml index 65e75007a3..9aeba22a01 100644 --- a/.github/workflows/release-nightly.yml +++ b/.github/workflows/release-nightly.yml @@ -46,9 +46,9 @@ jobs: run: 'npm ci' - name: 'Run Tests' + if: "${{github.event.inputs.force_skip_tests != 'true'}}" uses: './.github/actions/run-tests' with: - force_skip_tests: '${{ github.event.inputs.force_skip_tests }}' gemini_api_key: '${{ secrets.GEMINI_API_KEY }}' - name: 'Get Nightly Version' diff --git a/.github/workflows/release-patch-3-release.yml b/.github/workflows/release-patch-3-release.yml index 45627f34c9..ac4f70e01d 100644 --- a/.github/workflows/release-patch-3-release.yml +++ b/.github/workflows/release-patch-3-release.yml @@ -144,9 +144,9 @@ jobs: echo " Previous Tag: ${{ steps.patch_version.outputs.PREVIOUS_TAG }}" - name: 'Run Tests' + if: "${{github.event.inputs.force_skip_tests != 'true'}}" uses: './.github/actions/run-tests' with: - force_skip_tests: '${{ github.event.inputs.force_skip_tests }}' gemini_api_key: '${{ secrets.GEMINI_API_KEY }}' working-directory: './release' diff --git a/.github/workflows/release-promote.yml b/.github/workflows/release-promote.yml index df66474921..a52c1924c3 100644 --- a/.github/workflows/release-promote.yml +++ b/.github/workflows/release-promote.yml @@ -141,9 +141,9 @@ jobs: run: 'npm ci' - name: 'Run Tests' + if: "${{github.event.inputs.force_skip_tests != 'true'}}" uses: './.github/actions/run-tests' with: - force_skip_tests: '${{ github.event.inputs.force_skip_tests }}' gemini_api_key: '${{ secrets.GEMINI_API_KEY }}' working-directory: './release'