-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (33 loc) · 943 Bytes
/
changed.yml
File metadata and controls
35 lines (33 loc) · 943 Bytes
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
33
34
35
name: Compute Changes
on:
workflow_call:
outputs:
java:
value: ${{ jobs.changed.outputs.java }}
python:
value: ${{ jobs.changed.outputs.python }}
actions:
value: ${{ jobs.changed.outputs.actions }}
testdata:
value: ${{ jobs.changed.outputs.testdata }}
siteindex:
value: ${{ jobs.changed.outputs.siteindex }}
jobs:
changed:
runs-on: ubuntu-latest
outputs:
java: ${{ steps.filter.outputs.java }}
python: ${{ steps.filter.outputs.python }}
actions: ${{ steps.filter.outputs.actions }}
testdata: ${{ steps.filter.outputs.testdata }}
siteindex: ${{ steps.filter.outputs.siteindex }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
show-progress: false
- uses: dorny/paths-filter@v3
id: filter
with:
filters: .github/path-filters.yml
token: ${{ github.token }}