Skip to content

Commit a0ec681

Browse files
committed
Updates for typo
1 parent dda3d51 commit a0ec681

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup-rerun-vars/action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ runs:
2121
- name: Check if this is a re-run
2222
shell: bash
2323
run: |
24-
run_id= ${{ inputs.run_id }}
25-
repository=${{ inputs.repository }}
24+
# Assign inputs to variables
25+
run_id="${{ inputs.run_id }}"
26+
repository="${{ inputs.repository }}"
2627
2728
if [ "${{ inputs.run_attempt }}" -gt 1 ]; then
2829
echo "This run is a re-run (attempt #${{ inputs.run_attempt }})."

0 commit comments

Comments
 (0)