Merge branch 'develop' into #33-wrong-wealth-calculation
This commit is contained in:
commit
f61e088238
|
|
@ -1,13 +1,15 @@
|
|||
name: Adds all issues to project board
|
||||
name: Move new issues into To Do
|
||||
|
||||
on:
|
||||
issues:
|
||||
types: [opened]
|
||||
jobs:
|
||||
add-to-project:
|
||||
name: Add issue to project
|
||||
createCard:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/add-to-project@v0.5.0
|
||||
with:
|
||||
project-url: https://git.byroks.de/MidgardVTT-Entwicklung/-/projects/3
|
||||
github-token: ${{ secrets.GH_TOKEN }}
|
||||
labeled: bug, enhancement
|
||||
label-operator: OR
|
||||
- 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 }}"
|
||||
|
|
@ -242,7 +242,6 @@ export class M5Character extends Actor {
|
|||
calc: item.system.calc,
|
||||
equipped: item.system?.equipped,
|
||||
weight: item.system.weight || 0,
|
||||
containerId: item.system.containerId || "",
|
||||
value: item.system.value || 0,
|
||||
currency: item.system.currency || "",
|
||||
quantity: item.system.quantity || 0,
|
||||
|
|
|
|||
Loading…
Reference in New Issue