Changeset 58767
- Timestamp:
- 07/19/2024 01:13:49 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/reusable-performance.yml
r58270 r58767 55 55 # - Configure environment variables. 56 56 # - Checkout repository. 57 # - Determine the target SHA value (on `workflow_dispatch` only). 57 58 # - Set up Node.js. 58 59 # - Log debug information. … … 110 111 with: 111 112 show-progress: ${{ runner.debug == '1' && 'true' || 'false' }} 113 fetch-depth: ${{ github.event_name == 'workflow_dispatch' && '2' || '1' }} 114 115 # The `workflow_dispatch` event is the only one missing the needed SHA to target. 116 - name: Retrieve previous commit SHA (if necessary) 117 if: ${{ github.event_name == 'workflow_dispatch' }} 118 run: echo "TARGET_SHA=$(git rev-parse HEAD^1)" >> $GITHUB_ENV 112 119 113 120 - name: Set up Node.js
Note: See TracChangeset
for help on using the changeset viewer.