renaming .github to .gitea
Some checks failed
Main / changes (push) Failing after 0s
Main / build (push) Has been skipped
Main / deploy (push) Has been skipped

This commit is contained in:
2026-05-18 19:42:09 -05:00
parent 9cc86fe79f
commit b789e1264a
6 changed files with 0 additions and 0 deletions

View File

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