Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
6805b27
testing auto-label gha
HGWright Jun 26, 2023
afbc0d8
testing auto-label gha 2
HGWright Jun 26, 2023
efe7a62
testing auto-label gha 3
HGWright Jun 26, 2023
adad5e3
testing auto-label gha 4
HGWright Jun 26, 2023
e6f45b9
testing auto-label gha 5
HGWright Jun 26, 2023
be1044e
testing auto-label gha 6
HGWright Jun 26, 2023
ffd0972
testing auto-label gha 7
HGWright Jun 27, 2023
f54a9ee
testing auto-label gha 8
HGWright Jun 27, 2023
c70c973
testing auto-label gha 9
HGWright Jun 27, 2023
5df15aa
testing auto-label gha 10
HGWright Jun 27, 2023
4d1ecc6
testing auto-label gha 11
HGWright Jun 27, 2023
a443b6f
testing auto-label gha 12
HGWright Jun 27, 2023
d2ff9c9
testing auto-label gha 13
HGWright Jun 27, 2023
b95bc9d
testing auto-label gha 14
HGWright Jun 27, 2023
b646ecf
testing auto-label gha 15
HGWright Jun 27, 2023
17c425a
testing auto-label gha 16
HGWright Jun 27, 2023
5837cdf
testing auto-label gha 17
HGWright Jun 30, 2023
d006d3e
testing auto-label gha 18
HGWright Jun 30, 2023
7c22a4d
testing auto-label gha 19
HGWright Jun 30, 2023
ee97ec4
testing auto-label gha 20
HGWright Jun 30, 2023
647286b
testing auto-label gha 21
HGWright Jun 30, 2023
bde564b
testing auto-label gha 22
HGWright Jun 30, 2023
7416b83
testing auto-label gha 23
HGWright Jun 30, 2023
be49c0e
testing auto-label gha 24
HGWright Jun 30, 2023
7e4d198
testing auto-label gha 25
HGWright Jun 30, 2023
49af671
testing auto-label gha 26
HGWright Jun 30, 2023
c21849a
testing auto-label gha 27
HGWright Jun 30, 2023
c908732
testing auto-label gha 28
HGWright Jun 30, 2023
5852229
testing auto-label gha 29
HGWright Jun 30, 2023
4564595
testing auto-label gha 30
HGWright Jun 30, 2023
f17b0b4
testing auto-label gha 31
HGWright Jun 30, 2023
ce8220a
testing auto-label gha 32
HGWright Jun 30, 2023
7349294
testing auto-label gha 33
HGWright Jun 30, 2023
864a95e
testing auto-label gha 34
HGWright Jun 30, 2023
79f8bd8
testing auto-label gha 35
HGWright Jun 30, 2023
5ea4738
testing auto-label gha 36
HGWright Jun 30, 2023
abcd2ee
remove 3.14 wheels
HGWright Aug 1, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
'Type: Dependencies':
- '(depende|deps|Deps|Depende)'

'Type: Documentation':
- '(documentation|Docs|Documentation|Docs)'

'Type: GHA':
- '(gha|github action|GHA|Github Action|Github action)'

'Type: Infrastructure':
- '(depende|deps|Deps|Depende|documentation|Docs|Documentation|Docs|gha|github action|GHA|Github Action|Github action|testing|tests|coverage|Testing|Tests|Coverage)'

'Type: Testing':
- '(testing|tests|coverage|Testing|Tests|Coverage)'

'Type: Bug':
- '(bug|patch|fix|Bug|Fix|Patch)'

'Type: Enhancement':
- '(feature|Feature)'

'Type: Performance':
- '(performance|Performance)'

'Type: Tech Debt':
- '(debt|Debt)'

'Type: Question':
- '(question|Question)'
19 changes: 19 additions & 0 deletions .github/pull_request_labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
'Type: Dependencies':
- requirements/stratify.yml
- requirements/py*.yml
- requirements/pypi*.txt
- requirements/locks/py*.txt

'Type: Documentation':
- README.md
- index.ipynb

'Type: GHA':
- .github/*.yml
- .github/**/*.yml

'Type: Infrastructure':
- '*'

'Type: Testing':
- src/stratify/tests/*
28 changes: 28 additions & 0 deletions .github/workflows/ci-label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Reference
# - https://github.com/actions/labeler
# - https://github.com/github/issue-labeler

name: ci-label

on:
pull_request_target:
types: [opened, edited, reopened]
issues:
types: [opened, edited, reopened]

jobs:
issue_triage:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v4
with:
configuration-path: .github/pull_request_labeler.yml
repo-token: ${{ secrets.GITHUB_TOKEN }}

- uses: github/issue-labeler@v3.1
with:
configuration-path: .github/labeler.yml
enable-versioned-regex: 0
include-title: 1
repo-token: ${{ secrets.GITHUB_TOKEN }}
sync-labels: 1
2 changes: 1 addition & 1 deletion .github/workflows/ci-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: "build ${{ matrix.os }} (${{ matrix.arch }}) wheels"
uses: pypa/cibuildwheel@v2.13.0
env:
CIBW_SKIP: "cp36-* cp37-* pp* *-musllinux*"
CIBW_SKIP: "cp36-* cp37-* cp314-* pp* *-musllinux*"
CIBW_ARCHS: ${{ matrix.arch }}
CIBW_BUILD_FRONTEND: "build"
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014"
Expand Down
Loading