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 dda3d51 commit a0ec681Copy full SHA for a0ec681
setup-rerun-vars/action.yml
@@ -21,8 +21,9 @@ runs:
21
- name: Check if this is a re-run
22
shell: bash
23
run: |
24
- run_id= ${{ inputs.run_id }}
25
- repository=${{ inputs.repository }}
+ # Assign inputs to variables
+ run_id="${{ inputs.run_id }}"
26
+ repository="${{ inputs.repository }}"
27
28
if [ "${{ inputs.run_attempt }}" -gt 1 ]; then
29
echo "This run is a re-run (attempt #${{ inputs.run_attempt }})."
0 commit comments