We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6198726 commit dce8a92Copy full SHA for dce8a92
setup-rerun-vars/action.yml
@@ -12,8 +12,8 @@ jobs:
12
steps:
13
- name: Check if this is a re-run
14
run: |
15
- if [ "${{ github.run_attempt }}" -gt 1 ]; then
16
- echo "This run is a re-run (attempt #${{ github.run_attempt }})."
+ if [ "${{ inputs.run_attempt }}" -gt 1 ]; then
+ echo "This run is a re-run (attempt #${{ inputs.run_attempt }})."
17
else
18
echo "This is the first run."
19
fi
0 commit comments