Skip to content

Commit b61c3b1

Browse files
Fix YAML indentation in handle-fix-commit action
Indented lines in the bash script block that were starting at column 1, causing a YAML syntax error. This resolves the failure in the Apply formatting workflow introduced by commit 04601cc. Co-authored-by: greenc-FNAL <2372949+greenc-FNAL@users.noreply.github.com>
1 parent 76af3af commit b61c3b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/handle-fix-commit/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ runs:
8585
rm -f ~/.git-credentials
8686
umask 077
8787
cat <<EOF > ~/.git-credentials
88-
https://x-access-token:${{ inputs.token }}@github.com
89-
EOF
88+
https://x-access-token:${{ inputs.token }}@github.com
89+
EOF
9090
git config --local credential.helper 'store --file ~/.git-credentials'
9191
9292
git add -u

0 commit comments

Comments
 (0)