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 bb88ed2 commit 6a1902dCopy full SHA for 6a1902d
.github/workflows/deprecations-bot.yml
@@ -26,6 +26,7 @@ jobs:
26
run: |
27
echo "Adding deprecation"
28
BODY=$(curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/phofl/pandas/issues/2 | python3 -c "import sys, json; print(json.load(sys.stdin)['body'])")
29
+ echo python3 -c "import os; print(os.environ)
30
echo ${BODY}
31
echo "{'body': '${BODY}'}"
- curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -X PATCH -d '{"body": "'${BODY}'"}' https://api.github.com/repos/phofl/pandas/issues/2
32
+ curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -X PATCH -d '{"body": ${BODY}'"}' https://api.github.com/repos/phofl/pandas/issues/2
0 commit comments