Skip to content

Commit

Permalink
fix: remove indentation from PR text (#153)
Browse files Browse the repository at this point in the history
# Description

The automatically created PR looked like

```
    # Description
    Text here
```

which is wrong. The reason is, that `<<-` removes tabs only {and not
spaces} and the IDE converts tabs into spaces automatically.

# Verification

Checked the output on my machine.
  • Loading branch information
kayman-mk authored Jan 5, 2025
1 parent c09dfcc commit ccd9621
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions update-workflows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ function create_commit_and_pr() {
git commit -m "update workflows to latest version"
git push --set-upstream origin update-workflows

body=$(cat <<-EOF
# Description
body=$(cat <<EOF
# Description
This PR updates all workflows to the latest version.
This PR updates all workflows to the latest version.
# Verification
# Verification
Done by the workflows in this feature branch, except for the release workflow.
Done by the workflows in this feature branch, except for the release workflow.
EOF
)

Expand Down

0 comments on commit ccd9621

Please sign in to comment.