Prova body senza caratteri speciali

This commit is contained in:
pazpi 2026-01-08 12:02:52 +01:00
parent 7eb3eb8b32
commit bd8106ff47

View file

@ -50,27 +50,16 @@ jobs:
if: steps.changes.outputs.changed == 'true' if: steps.changes.outputs.changed == 'true'
env: env:
FORGEJO_TOKEN: ${{ secrets.FORGEJO_TOKEN }} FORGEJO_TOKEN: ${{ secrets.FORGEJO_TOKEN }}
BRANCH_NAME: ${{ steps.commit.outputs.branch_name }}
API_URL: ${{ forgejo.api_url }}
REPO: ${{ forgejo.repository }}
run: | run: |
DATE=$(date +%Y-%m-%d) DATE=$(date +%Y-%m-%d)
TIMESTAMP=$(date -Iseconds)
cat > /tmp/pr-payload.json << EOF
{
"title": "chore: weekly flake update ${DATE}",
"body": "Automated flake update from CI.\n\nThis PR updates all flake inputs.\n\n**Note:** Build verification will run automatically on this PR.\n\nGenerated on: ${TIMESTAMP}",
"head": "${BRANCH_NAME}",
"base": "master"
}
EOF
echo "Creating PR with payload:"
cat /tmp/pr-payload.json
curl -X POST \ curl -X POST \
-H "Authorization: token $FORGEJO_TOKEN" \ -H "Authorization: token $FORGEJO_TOKEN" \
-H "Content-Type: application/json" \ -H "Content-Type: application/json" \
-d @/tmp/pr-payload.json \ -d '{
"${API_URL}/repos/${REPO}/pulls" "title": "chore: weekly flake update ${DATE}",
"body": "Automated flake update from CI",
"head": "'"${{ needs.prepare.outputs.branch_name }}"'",
"base": "master"
}' \
"${{ forgejo.api_url }}/repos/${{ forgejo.repository }}/pulls"