We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8c751e commit cbd754cCopy full SHA for cbd754c
.github/actions/veristat_baseline_compare/action.yml
@@ -22,7 +22,7 @@ runs:
22
- if: ${{ github.event_name == 'pull_request' }}
23
uses: actions/cache/restore@v4
24
with:
25
- key: ${{ inputs.baseline_name }}
+ key: ${{ inputs.baseline_name }}-${{ github.base_ref }}
26
restore-keys: |
27
${{ inputs.baseline_name }}-
28
path: '${{ github.workspace }}/${{ inputs.baseline_name }}'
@@ -45,5 +45,5 @@ runs:
45
- if: ${{ github.event_name == 'push' }}
46
uses: actions/cache/save@v4
47
48
- key: ${{ inputs.baseline_name }}-${{ github.run_id }}
+ key: ${{ inputs.baseline_name }}-${{ github.ref_name }}-${{ github.run_id }}
49
0 commit comments