aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/files-changed.yml
blob: 2efd6767197d134c91d0265fffcf8788a429aaf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: files changed

on:
  workflow_call:
    outputs:
      docs:
        description: "whether docs files changed"
        value: ${{ jobs.files-changed.outputs.docs }}
      backend:
        description: "whether backend files changed"
        value: ${{ jobs.files-changed.outputs.backend }}
      frontend:
        description: "whether frontend files changed"
        value: ${{ jobs.files-changed.outputs.frontend }}

jobs:
  files-changed:
    name: detect which files changed
    runs-on: ubuntu-latest
    timeout-minutes: 3
    # Map a step output to a job output
    outputs:
      docs: ${{ steps.changes.outputs.docs }}
      backend: ${{ steps.changes.outputs.backend }}
      frontend: ${{ steps.changes.outputs.frontend }}
    steps:
      - uses: actions/checkout@v3
      - name: Check for backend file changes
        uses: dorny/paths-filter@v2
        id: changes
        with:
          filters: .github/file-filters.yml