Skip to content

Commit 6fd77df

Browse files
fix(cleanup-branches): switch conditional statement by using single quotes (#1373)
fix(cleanup-branches): replace quote type in if statements
1 parent 837a339 commit 6fd77df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

actions/cleanup-branches/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ runs:
7373
done
7474
- name: Delete branches (dry run)
7575
shell: bash
76-
if: ${{ inputs.dry-run == "true" }}
76+
if: ${{ inputs.dry-run == 'true' }}
7777
run: |
7878
cat branches.txt | xargs -I {} echo git push origin --delete "{}"
7979
- name: Delete branches
8080
shell: bash
81-
if: ${{ inputs.dry-run != "true" }}
81+
if: ${{ inputs.dry-run != 'true' }}
8282
run: |
8383
cat branches.txt | xargs -I {} git push origin --delete "{}"

0 commit comments

Comments
 (0)