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 71cb8a4 commit b5a1055Copy full SHA for b5a1055
action.yml
@@ -38,6 +38,9 @@ runs:
38
if: github.event_name != 'pull_request' || github.event.action != 'closed'
39
run: |
40
result=$(git diff --cached)
41
+ result="${result//'%'/'%25'}"
42
+ result="${result//$'\n'/'%0A'}"
43
+ result="${result//$'\r'/'%0D'}"
44
echo "result=$result" >> "${GITHUB_OUTPUT}"
45
# 差分があったときは、コミットを作りpushする
46
- name: Push
0 commit comments