36 fix logbook edit view error (#37)

* fixing log view edit error

* fixing log view edit error

* fixing log view edit error

* fixing log view edit error
This commit was merged in pull request #37.
This commit is contained in:
2025-02-03 01:51:42 +00:00
committed by GitHub
parent 5be32d0ce1
commit 02482a4c32
6 changed files with 53 additions and 5 deletions

28
.github/workflows/changes.yaml vendored Normal file
View File

@@ -0,0 +1,28 @@
name: Changes
on:
workflow_call:
outputs:
api:
value: ${{ jobs.changes.outputs.api }}
app:
value: ${{ jobs.changes.outputs.app }}
jobs:
changes:
name: filter
runs-on: ubuntu-latest
outputs:
api: ${{ steps.filter.outputs.api }}
app: ${{ steps.filter.outputs.app }}
steps:
- uses: actions/checkout@v3
- uses: dorny/paths-filter@v3
id: filter
with:
initial-fetch-depth: 2
filters: |
api:
- 'api/**'
app:
- 'app/**'