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 d69c014 commit 7335a40Copy full SHA for 7335a40
.github/workflows/dispatch_update.yml
@@ -56,12 +56,15 @@ jobs:
56
id: vars
57
run: |
58
pr_title="Update all tools of $INSTANCE"
59
- pr_body="ran the following: \
60
- - make INSTANCE=$INSTANCE lint \
61
- - make INSTANCE=$INSTANCE fix \
62
- - make INSTANCE=$INSTANCE update-all\"
63
- echo "pr_title=$pr_title" >> $GITHUB_OUTPUT
64
- echo "pr_body=$pr_body" >> $GITHUB_OUTPUT
+ {
+ echo "pr_title=$pr_title"
+ echo "pr_body<<EOF"
+ echo "ran the following:"
+ echo "- make INSTANCE=$INSTANCE lint"
+ echo "- make INSTANCE=$INSTANCE fix"
65
+ echo "- make INSTANCE=$INSTANCE update-all"
66
+ echo "EOF"
67
+ } >> "$GITHUB_OUTPUT"
68
env:
69
INSTANCE: ${{ inputs.instance }}
70
- name: Create Pull Request
0 commit comments