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 837a339 commit 6fd77dfCopy full SHA for 6fd77df
actions/cleanup-branches/action.yml
@@ -73,11 +73,11 @@ runs:
73
done
74
- name: Delete branches (dry run)
75
shell: bash
76
- if: ${{ inputs.dry-run == "true" }}
+ if: ${{ inputs.dry-run == 'true' }}
77
run: |
78
cat branches.txt | xargs -I {} echo git push origin --delete "{}"
79
- name: Delete branches
80
81
- if: ${{ inputs.dry-run != "true" }}
+ if: ${{ inputs.dry-run != 'true' }}
82
83
cat branches.txt | xargs -I {} git push origin --delete "{}"
0 commit comments