foundry-vtt-system-midgard5/.gitea/workflows/add-issue-to-project.yaml
Workflow config file is invalid. Please check your config file: yaml: line 11: mapping values are not allowed in this context

15 lines
364 B
YAML

name: Move new issues into To Do
on:
issues:
types: [opened]
jobs:
createCard:
runs-on: ubuntu-latest
steps:
-name: Close Issue
run: >
curl -X PATCH -H "Content-Type: application/xml"
-H "Authorization: token ${{ secrets.GITEA_TOKEN }}
-d '{ "state": "To Do" }'
"${{ gitea.event.issue.url }}"