2023-05-29 23:31:00 -06:00
|
|
|
name: files-changed
|
2023-05-24 19:33:31 -06:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
outputs:
|
|
|
|
backend:
|
2023-05-29 23:31:00 -06:00
|
|
|
value: ${{ jobs.detect.outputs.backend }}
|
2023-05-24 19:33:31 -06:00
|
|
|
frontend:
|
2023-05-29 23:31:00 -06:00
|
|
|
value: ${{ jobs.detect.outputs.frontend }}
|
|
|
|
docs:
|
|
|
|
value: ${{ jobs.detect.outputs.docs }}
|
|
|
|
actions:
|
|
|
|
value: ${{ jobs.detect.outputs.actions }}
|
2023-06-14 12:17:58 -06:00
|
|
|
templates:
|
|
|
|
value: ${{ jobs.detect.outputs.templates }}
|
2023-06-18 20:53:20 -06:00
|
|
|
docker:
|
|
|
|
value: ${{ jobs.detect.outputs.docker }}
|
2023-06-29 08:37:41 -06:00
|
|
|
swagger:
|
|
|
|
value: ${{ jobs.detect.outputs.swagger }}
|
2023-09-07 20:24:06 -06:00
|
|
|
yaml:
|
|
|
|
value: ${{ jobs.detect.outputs.yaml }}
|
2023-05-24 19:33:31 -06:00
|
|
|
|
|
|
|
jobs:
|
2023-05-29 23:31:00 -06:00
|
|
|
detect:
|
2023-05-24 19:33:31 -06:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
timeout-minutes: 3
|
|
|
|
outputs:
|
|
|
|
backend: ${{ steps.changes.outputs.backend }}
|
|
|
|
frontend: ${{ steps.changes.outputs.frontend }}
|
2023-05-29 23:31:00 -06:00
|
|
|
docs: ${{ steps.changes.outputs.docs }}
|
|
|
|
actions: ${{ steps.changes.outputs.actions }}
|
2023-06-14 12:17:58 -06:00
|
|
|
templates: ${{ steps.changes.outputs.templates }}
|
2023-06-18 20:53:20 -06:00
|
|
|
docker: ${{ steps.changes.outputs.docker }}
|
2023-06-29 08:37:41 -06:00
|
|
|
swagger: ${{ steps.changes.outputs.swagger }}
|
2023-09-07 20:24:06 -06:00
|
|
|
yaml: ${{ steps.changes.outputs.yaml }}
|
2023-05-24 19:33:31 -06:00
|
|
|
steps:
|
2023-09-16 09:06:27 -06:00
|
|
|
- uses: actions/checkout@v4
|
2024-01-31 18:43:06 -07:00
|
|
|
- uses: dorny/paths-filter@v3
|
2023-05-24 19:33:31 -06:00
|
|
|
id: changes
|
|
|
|
with:
|
2023-05-29 23:31:00 -06:00
|
|
|
filters: |
|
|
|
|
backend:
|
|
|
|
- "**/*.go"
|
2023-06-14 12:17:58 -06:00
|
|
|
- "templates/**/*.tmpl"
|
2023-06-29 10:29:48 -06:00
|
|
|
- "assets/emoji.json"
|
2023-05-29 23:31:00 -06:00
|
|
|
- "go.mod"
|
|
|
|
- "go.sum"
|
2023-06-23 07:56:18 -06:00
|
|
|
- "Makefile"
|
2023-08-29 19:40:13 -06:00
|
|
|
- ".golangci.yml"
|
|
|
|
- ".editorconfig"
|
2023-05-29 23:31:00 -06:00
|
|
|
|
|
|
|
frontend:
|
|
|
|
- "**/*.js"
|
|
|
|
- "web_src/**"
|
2023-06-29 10:29:48 -06:00
|
|
|
- "assets/emoji.json"
|
2023-05-29 23:31:00 -06:00
|
|
|
- "package.json"
|
|
|
|
- "package-lock.json"
|
2023-06-23 07:56:18 -06:00
|
|
|
- "Makefile"
|
2023-08-29 19:40:13 -06:00
|
|
|
- ".eslintrc.yaml"
|
|
|
|
- ".stylelintrc.yaml"
|
|
|
|
- ".npmrc"
|
2023-05-29 23:31:00 -06:00
|
|
|
|
|
|
|
docs:
|
|
|
|
- "**/*.md"
|
|
|
|
- "docs/**"
|
2023-08-29 19:40:13 -06:00
|
|
|
- ".markdownlint.yaml"
|
2023-09-16 07:23:06 -06:00
|
|
|
- "package.json"
|
|
|
|
- "package-lock.json"
|
2023-05-29 23:31:00 -06:00
|
|
|
|
|
|
|
actions:
|
|
|
|
- ".github/workflows/*"
|
2023-09-16 07:23:06 -06:00
|
|
|
- "Makefile"
|
2023-06-14 12:17:58 -06:00
|
|
|
|
|
|
|
templates:
|
|
|
|
- "templates/**/*.tmpl"
|
2023-08-29 19:40:13 -06:00
|
|
|
- "pyproject.toml"
|
2023-06-18 12:13:08 -06:00
|
|
|
- "poetry.lock"
|
2023-06-23 07:56:18 -06:00
|
|
|
|
2023-06-18 20:53:20 -06:00
|
|
|
docker:
|
|
|
|
- "Dockerfile"
|
|
|
|
- "Dockerfile.rootless"
|
|
|
|
- "docker/**"
|
2023-06-23 07:56:18 -06:00
|
|
|
- "Makefile"
|
2023-06-29 08:37:41 -06:00
|
|
|
|
|
|
|
swagger:
|
|
|
|
- "templates/swagger/v1_json.tmpl"
|
2023-08-20 16:59:19 -06:00
|
|
|
- "Makefile"
|
2023-08-29 19:40:13 -06:00
|
|
|
- "package.json"
|
|
|
|
- "package-lock.json"
|
2023-08-30 18:41:37 -06:00
|
|
|
- ".spectral.yaml"
|
2023-09-07 20:24:06 -06:00
|
|
|
|
|
|
|
yaml:
|
|
|
|
- "**/*.yml"
|
|
|
|
- "**/*.yaml"
|
|
|
|
- ".yamllint.yaml"
|
2023-09-16 07:23:06 -06:00
|
|
|
- "pyproject.toml"
|
|
|
|
- "poetry.lock"
|