From b0bd89fae5a33ffab195e1e4b1a9b90a27be146d Mon Sep 17 00:00:00 2001 From: Edward Foyle Date: Tue, 2 Apr 2024 13:56:20 -0700 Subject: [PATCH] fix defaults --- .github/workflows/deprecate_release.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deprecate_release.yml b/.github/workflows/deprecate_release.yml index f611e9dfd2..9bd66c381c 100644 --- a/.github/workflows/deprecate_release.yml +++ b/.github/workflows/deprecate_release.yml @@ -10,14 +10,10 @@ on: required: true type: string description: The release commit hash that should be deprecated - # TODO remove this before merging - testing only - default: e81b212ab deprecationMessage: required: true type: string description: The deprecation message to apply to the affected package versions - # TODO remove this before merging - testing only - default: test deprecation message jobs: install: @@ -38,4 +34,5 @@ jobs: - uses: ./.github/actions/setup_node - uses: ./.github/actions/restore_install_cache - name: Deprecate release versions - run: npx tsx scripts/deprecate_release.ts --commit-hash ${{ inputs.commitHash }} --deprecation-message ${{ inputs.deprecationMessage }} + # TODO remove defaults before merging -- for testing only + run: npx tsx scripts/deprecate_release.ts --commit-hash ${{ inputs.commitHash || 'e81b212ab' }} --deprecation-message ${{ inputs.deprecationMessage || 'test deprecation message' }}