Skip to content

Commit 8da8dee

Browse files
authored
add files (#346)
1 parent 192cc8d commit 8da8dee

File tree

2 files changed

+63
-0
lines changed

2 files changed

+63
-0
lines changed

.github/labeler.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# yamllint disable rule:indentation
2+
Documentation:
3+
- changed-files:
4+
- any-glob-to-any-file: docs/**
5+
6+
Examples:
7+
- changed-files:
8+
- any-glob-to-any-file: examples/**
9+
10+
Tests:
11+
- changed-files:
12+
- any-glob-to-any-file: test/**
13+
14+
CI:
15+
- changed-files:
16+
- any-glob-to-any-file: .github/workflows/**
17+
- any-glob-to-any-file: .circleci/**
18+
19+
datasets:
20+
- changed-files:
21+
- any-glob-to-any-file: skada/datasets/**
22+
23+
tests-datasets:
24+
- changed-files:
25+
- any-glob-to-any-file: skada/datasets/tests/**
26+
27+
shallow:
28+
- changed-files:
29+
- any-glob-to-any-file: skada/**
30+
31+
tests-shallow:
32+
- changed-files:
33+
- any-glob-to-any-file: skada/tests/**
34+
35+
deep:
36+
- changed-files:
37+
- any-glob-to-any-file: skada/deep/**
38+
39+
tests-deep:
40+
- changed-files:
41+
- any-glob-to-any-file: skada/deep/tests/**
42+
43+
base:
44+
- changed-files:
45+
- any-glob-to-any-file: skada/base.py
46+
- any-glob-to-any-file: skada/utils.py
47+
- any-glob-to-any-file: skada/_utils.py
48+
- any-glob-to-any-file: skada/_pipeline.py

.github/workflows/labeler.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: "Pull Request Labeler"
2+
3+
on: # yamllint disable-line rule:truthy
4+
pull_request_target:
5+
branches:
6+
- 'master'
7+
jobs:
8+
labeler:
9+
permissions:
10+
contents: read
11+
pull-requests: write
12+
issues: write
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/labeler@v5 # yamllint disable-line rule:indentation

0 commit comments

Comments
 (0)