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:
|
jobs:
|
||||||
add-to-project:
|
createCard:
|
||||||
name: Add issue to project
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/add-to-project@v0.5.0
|
- name: Close Issue
|
||||||
with:
|
run: >
|
||||||
project-url: https://git.byroks.de/MidgardVTT-Entwicklung/-/projects/3
|
curl -X PATCH -H "Content-Type: application/xml"
|
||||||
github-token: ${{ secrets.GH_TOKEN }}
|
-H "Authorization: token ${{ secrets.GITEA_TOKEN }}
|
||||||
labeled: bug, enhancement
|
-d '{ "state": "To Do" }'
|
||||||
label-operator: OR
|
"${{ gitea.event.issue.url }}"
|
||||||
|
|
@ -242,7 +242,6 @@ export class M5Character extends Actor {
|
||||||
calc: item.system.calc,
|
calc: item.system.calc,
|
||||||
equipped: item.system?.equipped,
|
equipped: item.system?.equipped,
|
||||||
weight: item.system.weight || 0,
|
weight: item.system.weight || 0,
|
||||||
containerId: item.system.containerId || "",
|
|
||||||
value: item.system.value || 0,
|
value: item.system.value || 0,
|
||||||
currency: item.system.currency || "",
|
currency: item.system.currency || "",
|
||||||
quantity: item.system.quantity || 0,
|
quantity: item.system.quantity || 0,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue