File tree Expand file tree Collapse file tree 2 files changed +32
-14
lines changed Expand file tree Collapse file tree 2 files changed +32
-14
lines changed Original file line number Diff line number Diff line change 1
1
# Add 'docker' to any changes within 'docker' folder or any subfolders
2
2
docker :
3
- - docker/**/*
3
+ - changed-files :
4
+ - any-glob-to-any-file : docker/**
4
5
5
6
# Add 'docs' to any changes within 'docs' folder
6
7
docs :
7
- - docs/**/*
8
+ - changed-files :
9
+ - any-glob-to-any-file : docs/**
8
10
9
11
# Add 'ci' to any changes in '.github' folder
10
12
ci :
11
- - .github/**/*
13
+ - changed-files :
14
+ - any-glob-to-any-file : .github/**
12
15
13
16
# Add 'examples' to any changes within 'examples' folder
14
17
examples :
15
- - examples/**/*
18
+ - changed-files :
19
+ - any-glob-to-any-file : examples/**
16
20
17
21
# Add 'base' to any changes within 'base' folder
18
22
" module: base " :
19
- - ignite/base/**/*
23
+ - changed-files :
24
+ - any-glob-to-any-file : ignite/base/**/*
20
25
21
26
# Add 'contrib' to any changes within 'contrib' folder
22
27
" module: contrib " :
23
- - ignite/contrib/**/*
28
+ - changed-files :
29
+ - any-glob-to-any-file : ignite/contrib/**/*
24
30
25
31
# Add 'distributed' to any changes within 'distributed' folder
26
32
" module: distributed " :
27
- - ignite/distributed/**/*
33
+ - changed-files :
34
+ - any-glob-to-any-file : ignite/distributed/**/*
28
35
29
36
# Add 'engine' to any changes within 'engine' folder
30
37
" module: engine " :
31
- - ignite/engine/**/*
38
+ - changed-files :
39
+ - any-glob-to-any-file : ignite/engine/**/*
32
40
33
41
# Add 'handlers' to any changes within 'handlers' folder
34
42
" module: handlers " :
35
- - ignite/handlers/**/*
43
+ - changed-files :
44
+ - any-glob-to-any-file : ignite/handlers/**/*
36
45
37
46
# Add 'metrics' to any changes within 'metrics' folder
38
47
" module: metrics " :
39
- - ignite/metrics/**/*
48
+ - changed-files :
49
+ - any-glob-to-any-file : ignite/metrics/**/*
40
50
51
+ -
41
52
# Add 'utils' to any changes within 'utils' module
42
53
" module: utils " :
43
- - ignite/utils.py
54
+ - changed-files :
55
+ - any-glob-to-any-file : ignite/utils.py
Original file line number Diff line number Diff line change 1
1
name : Triage
2
2
3
3
on :
4
- pull_request_target :
5
- types : [opened]
4
+ # For testing purposes only
5
+ # https://github.com/actions/labeler?tab=readme-ov-file#updating-major-version-of-the-labeler
6
+ pull_request
7
+ # pull_request_target:
8
+ # types: [opened]
6
9
# issues:
7
10
# types: [opened]
8
11
9
12
jobs :
10
13
triage :
14
+ permissions :
15
+ contents : read
16
+ pull-requests : write
11
17
runs-on : ubuntu-latest
12
18
steps :
19
+ - uses : actions/checkout@v4
13
20
- name : Pull Request Labeler
14
- # if: github.event_name == 'pull_request_target'
15
21
uses : actions/labeler@v5
16
22
with :
17
23
configuration-path : .github/pr-labeler-config.yml
You can’t perform that action at this time.
0 commit comments