Skip to content

Commit

Permalink
#0: disable workflow telemetry
Browse files Browse the repository at this point in the history
  • Loading branch information
ttmchiou committed Dec 14, 2024
1 parent ddca1b1 commit 2ba5a59
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/actions/prepare-metal-run/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ inputs:
description: 'Which version of Python to use to run the tests.'
required: false
default: '3.8'
run-telemetry:
description: 'Whether to run telemetry'
required: false
default: 'false'

runs:
using: "composite"
Expand All @@ -32,5 +36,5 @@ runs:
with:
python-version: ${{ inputs.python-version }}
- name: Collect Workflow Telemetry
if: ${{ !cancelled() }}
if: ${{ !cancelled() && inputs.run-telemetry == 'true' }}
uses: catchpoint/workflow-telemetry-action@v2

0 comments on commit 2ba5a59

Please sign in to comment.