We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7932de8 commit e33a7beCopy full SHA for e33a7be
.github/workflows/scaffold-build-release.yml
@@ -113,7 +113,7 @@ jobs:
113
env:
114
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
115
run: |
116
- cat > /tmp/pr_body.md <<'EOFBODY'
+ cat > ${{ runner.temp }}/pr_body.md <<'EOFBODY'
117
This PR was automatically created by the scaffold workflow.
118
119
## Changes
@@ -126,7 +126,7 @@ jobs:
126
EOFBODY
127
gh pr create \
128
--title "Auto-scaffold: Add minimal Kivy app and buildozer config" \
129
- --body-file /tmp/pr_body.md \
+ --body-file ${{ runner.temp }}/pr_body.md \
130
--label "automated" \
131
--label "scaffold" \
132
--head "${{ steps.scaffold.outputs.branch_name }}" \
0 commit comments