Skip to content

Commit 7fffd08

Browse files
committed
fix: rename variable for clarity in daily-benchmark.yml
- Changed `releaseExists` to `tagExists` for better understanding of the variable's purpose. - This update improves code readability and aligns with the context of checking tag existence in the release process.
1 parent 4937c01 commit 7fffd08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/daily-benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ jobs:
258258
const fs = require('fs');
259259
const tagName = '${{ needs.analysis.outputs.tag-name }}';
260260
const releaseName = '${{ needs.analysis.outputs.release-name }}';
261-
const releaseExists = '${{ needs.analysis.outputs.release-exists }}' === 'true';
261+
const tagExists = '${{ needs.analysis.outputs.release-exists }}' === 'true';
262262
const descriptionFile = '${{ needs.analysis.outputs.description-file }}';
263263
264264
let releaseBody = 'No benchmark results available.';

0 commit comments

Comments
 (0)