From 6805b278effcbfe339158fc7fc4f2d93fd49466f Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Mon, 26 Jun 2023 14:40:29 +0100 Subject: [PATCH 01/37] testing auto-label gha --- .github/labeler.yaml | 39 ++++++++++++++++++++++++++++++++++ .github/workflows/ci-label.yml | 25 ++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 .github/labeler.yaml create mode 100644 .github/workflows/ci-label.yml diff --git a/.github/labeler.yaml b/.github/labeler.yaml new file mode 100644 index 0000000..1e1d262 --- /dev/null +++ b/.github/labeler.yaml @@ -0,0 +1,39 @@ +'Type: Dependencies': + - requirements/stratify.yml + - requirements/py*.yml + - requirements/pypi*.txt + - requirements/locks/py*.txt + - '(dependencies|deps|dependency)' + +'Type: Documentation': + - README.md + - index.ipynb + - '(documentation|docs)' + - +'Type: GHA': + - .github/*.yml + - .github/**/*.yml + - '(gha|github action)' + +'Type: Infrastructure': + - '*' + - '(dependencies|dependency|deps|documentation|docs|gha|github action|testing|tests|coverage)' + +'Type: Testing': + - src/stratify/tests/* + - '(testing|tests|coverage)' + +'Type: Bug': + - '(bug|patch|fix)' + +'Type: Enhancement': + - '(feature)' + +'Type: Performance': + - '(performance)' + +'Type: Tech Debt': + - '(debt)' + +'Type: Question': + - '(?)' diff --git a/.github/workflows/ci-label.yml b/.github/workflows/ci-label.yml new file mode 100644 index 0000000..fb7a425 --- /dev/null +++ b/.github/workflows/ci-label.yml @@ -0,0 +1,25 @@ +# 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] + +permissions: + issues: write + contents: read + +jobs: + triage: + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v4 + - uses: github/issue-labeler@v3.1 + with: + configuration-path: .github/labeler.yml + enable-versioning-regex: 0 From afbc0d876be68efac00940421052aaa8dfa61f77 Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Mon, 26 Jun 2023 14:48:18 +0100 Subject: [PATCH 02/37] testing auto-label gha 2 --- .github/workflows/ci-label.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-label.yml b/.github/workflows/ci-label.yml index fb7a425..0536a4d 100644 --- a/.github/workflows/ci-label.yml +++ b/.github/workflows/ci-label.yml @@ -22,4 +22,4 @@ jobs: - uses: github/issue-labeler@v3.1 with: configuration-path: .github/labeler.yml - enable-versioning-regex: 0 + enable-versioned-regex: 0 From efe7a62d3312ab2b725575484968fdcb12638af2 Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Mon, 26 Jun 2023 16:09:37 +0100 Subject: [PATCH 03/37] testing auto-label gha 3 --- .github/workflows/ci-label.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci-label.yml b/.github/workflows/ci-label.yml index 0536a4d..1d03b7a 100644 --- a/.github/workflows/ci-label.yml +++ b/.github/workflows/ci-label.yml @@ -23,3 +23,4 @@ jobs: with: configuration-path: .github/labeler.yml enable-versioned-regex: 0 + repo-token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file From adad5e3346443b8872af0bf2b427e571e8362fb8 Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Mon, 26 Jun 2023 16:16:45 +0100 Subject: [PATCH 04/37] testing auto-label gha 4 --- .github/labeler.yml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/labeler.yml diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 0000000..1e1d262 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,39 @@ +'Type: Dependencies': + - requirements/stratify.yml + - requirements/py*.yml + - requirements/pypi*.txt + - requirements/locks/py*.txt + - '(dependencies|deps|dependency)' + +'Type: Documentation': + - README.md + - index.ipynb + - '(documentation|docs)' + - +'Type: GHA': + - .github/*.yml + - .github/**/*.yml + - '(gha|github action)' + +'Type: Infrastructure': + - '*' + - '(dependencies|dependency|deps|documentation|docs|gha|github action|testing|tests|coverage)' + +'Type: Testing': + - src/stratify/tests/* + - '(testing|tests|coverage)' + +'Type: Bug': + - '(bug|patch|fix)' + +'Type: Enhancement': + - '(feature)' + +'Type: Performance': + - '(performance)' + +'Type: Tech Debt': + - '(debt)' + +'Type: Question': + - '(?)' From e6f45b96f87e7035ec782c53c88cee06e58f6cee Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Mon, 26 Jun 2023 16:21:49 +0100 Subject: [PATCH 05/37] testing auto-label gha 5 --- .github/labeler.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 1e1d262..9229531 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -9,14 +9,13 @@ - README.md - index.ipynb - '(documentation|docs)' - - + 'Type: GHA': - .github/*.yml - .github/**/*.yml - '(gha|github action)' 'Type: Infrastructure': - - '*' - '(dependencies|dependency|deps|documentation|docs|gha|github action|testing|tests|coverage)' 'Type: Testing': From be1044e6fa75c4f31bd4bcaf7f01bcfdfddd00be Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Mon, 26 Jun 2023 16:24:00 +0100 Subject: [PATCH 06/37] testing auto-label gha 6 --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 9229531..13d0ad8 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -35,4 +35,4 @@ - '(debt)' 'Type: Question': - - '(?)' + - '(question)' From ffd0972917d7c08405a039d4259bd2719cbc4cbd Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Tue, 27 Jun 2023 11:00:46 +0100 Subject: [PATCH 07/37] testing auto-label gha 7 --- .github/labeler.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/labeler.yml b/.github/labeler.yml index 13d0ad8..dbadbb8 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -13,6 +13,8 @@ 'Type: GHA': - .github/*.yml - .github/**/*.yml + +'Type: GHA': - '(gha|github action)' 'Type: Infrastructure': From f54a9ee367912ff2c495fa45e8af8889d7ee6a73 Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Tue, 27 Jun 2023 11:03:04 +0100 Subject: [PATCH 08/37] testing auto-label gha 8 --- .github/labeler.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index dbadbb8..4d03377 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -10,9 +10,9 @@ - index.ipynb - '(documentation|docs)' -'Type: GHA': - - .github/*.yml - - .github/**/*.yml +#'Type: GHA': +# - .github/*.yml +# - .github/**/*.yml 'Type: GHA': - '(gha|github action)' From c70c9730b0d575353addefdb2d0b26de983f3c1e Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Tue, 27 Jun 2023 12:27:19 +0100 Subject: [PATCH 09/37] testing auto-label gha 9 --- .github/labeler.yaml | 39 -------------------------------- .github/labeler.yml | 13 +---------- .github/pull_request_labeler.yml | 19 ++++++++++++++++ .github/workflows/ci-label.yml | 10 +++++--- 4 files changed, 27 insertions(+), 54 deletions(-) delete mode 100644 .github/labeler.yaml create mode 100644 .github/pull_request_labeler.yml diff --git a/.github/labeler.yaml b/.github/labeler.yaml deleted file mode 100644 index 1e1d262..0000000 --- a/.github/labeler.yaml +++ /dev/null @@ -1,39 +0,0 @@ -'Type: Dependencies': - - requirements/stratify.yml - - requirements/py*.yml - - requirements/pypi*.txt - - requirements/locks/py*.txt - - '(dependencies|deps|dependency)' - -'Type: Documentation': - - README.md - - index.ipynb - - '(documentation|docs)' - - -'Type: GHA': - - .github/*.yml - - .github/**/*.yml - - '(gha|github action)' - -'Type: Infrastructure': - - '*' - - '(dependencies|dependency|deps|documentation|docs|gha|github action|testing|tests|coverage)' - -'Type: Testing': - - src/stratify/tests/* - - '(testing|tests|coverage)' - -'Type: Bug': - - '(bug|patch|fix)' - -'Type: Enhancement': - - '(feature)' - -'Type: Performance': - - '(performance)' - -'Type: Tech Debt': - - '(debt)' - -'Type: Question': - - '(?)' diff --git a/.github/labeler.yml b/.github/labeler.yml index 4d03377..d2dfd88 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,19 +1,9 @@ 'Type: Dependencies': - - requirements/stratify.yml - - requirements/py*.yml - - requirements/pypi*.txt - - requirements/locks/py*.txt - '(dependencies|deps|dependency)' 'Type: Documentation': - - README.md - - index.ipynb - '(documentation|docs)' -#'Type: GHA': -# - .github/*.yml -# - .github/**/*.yml - 'Type: GHA': - '(gha|github action)' @@ -21,7 +11,6 @@ - '(dependencies|dependency|deps|documentation|docs|gha|github action|testing|tests|coverage)' 'Type: Testing': - - src/stratify/tests/* - '(testing|tests|coverage)' 'Type: Bug': @@ -37,4 +26,4 @@ - '(debt)' 'Type: Question': - - '(question)' + - '(?)' diff --git a/.github/pull_request_labeler.yml b/.github/pull_request_labeler.yml new file mode 100644 index 0000000..7726a5e --- /dev/null +++ b/.github/pull_request_labeler.yml @@ -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/* diff --git a/.github/workflows/ci-label.yml b/.github/workflows/ci-label.yml index 1d03b7a..1cdac7f 100644 --- a/.github/workflows/ci-label.yml +++ b/.github/workflows/ci-label.yml @@ -12,15 +12,19 @@ on: permissions: issues: write + pull_request: write contents: read jobs: - triage: + issue_triage: runs-on: ubuntu-latest steps: - - uses: actions/labeler@v4 + - uses: actions/labeler + with: + configuration-path: .github/pull_request_labeler.yml + - uses: github/issue-labeler@v3.1 with: configuration-path: .github/labeler.yml enable-versioned-regex: 0 - repo-token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + repo-token: ${{ secrets.GITHUB_TOKEN }} From 5df15aa7fa18bac9c2686db2501031ab4a565ec9 Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Tue, 27 Jun 2023 12:30:05 +0100 Subject: [PATCH 10/37] testing auto-label gha 10 --- .github/workflows/ci-label.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-label.yml b/.github/workflows/ci-label.yml index 1cdac7f..bde6e29 100644 --- a/.github/workflows/ci-label.yml +++ b/.github/workflows/ci-label.yml @@ -19,7 +19,7 @@ jobs: issue_triage: runs-on: ubuntu-latest steps: - - uses: actions/labeler + - uses: actions/labeler@v4 with: configuration-path: .github/pull_request_labeler.yml From 4d1ecc637c9c3826effd944eaab725887285ad50 Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Tue, 27 Jun 2023 12:31:19 +0100 Subject: [PATCH 11/37] testing auto-label gha 11 --- .github/workflows/ci-label.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/ci-label.yml b/.github/workflows/ci-label.yml index bde6e29..a094bba 100644 --- a/.github/workflows/ci-label.yml +++ b/.github/workflows/ci-label.yml @@ -10,11 +10,6 @@ on: issues: types: [opened, edited, reopened] -permissions: - issues: write - pull_request: write - contents: read - jobs: issue_triage: runs-on: ubuntu-latest From a443b6f1a81a52d77b674cfa595b408ceb68956c Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Tue, 27 Jun 2023 12:32:37 +0100 Subject: [PATCH 12/37] testing auto-label gha 12 --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index d2dfd88..dae2d2a 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -26,4 +26,4 @@ - '(debt)' 'Type: Question': - - '(?)' + - '(question)' From d2ff9c9f941fec21d5f2b28b01e4cd60c327fe27 Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Tue, 27 Jun 2023 12:36:08 +0100 Subject: [PATCH 13/37] testing auto-label gha 13 --- .github/workflows/ci-label.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci-label.yml b/.github/workflows/ci-label.yml index a094bba..a3e5b48 100644 --- a/.github/workflows/ci-label.yml +++ b/.github/workflows/ci-label.yml @@ -10,6 +10,11 @@ on: issues: types: [opened, edited, reopened] +permissions: + issues: write + pull_requests: write + contents: read + jobs: issue_triage: runs-on: ubuntu-latest From b95bc9d326f70b584ad8774346c4c87692b60426 Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Tue, 27 Jun 2023 12:37:08 +0100 Subject: [PATCH 14/37] testing auto-label gha 14 --- .github/workflows/ci-label.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci-label.yml b/.github/workflows/ci-label.yml index a3e5b48..cd64b8b 100644 --- a/.github/workflows/ci-label.yml +++ b/.github/workflows/ci-label.yml @@ -12,7 +12,6 @@ on: permissions: issues: write - pull_requests: write contents: read jobs: From b646ecf828d36d204148904dfb0aea0c97034ff2 Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Tue, 27 Jun 2023 12:44:21 +0100 Subject: [PATCH 15/37] testing auto-label gha 15 --- .github/workflows/ci-label.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-label.yml b/.github/workflows/ci-label.yml index cd64b8b..587c6ce 100644 --- a/.github/workflows/ci-label.yml +++ b/.github/workflows/ci-label.yml @@ -21,9 +21,11 @@ jobs: - 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 repo-token: ${{ secrets.GITHUB_TOKEN }} + include-title: 1 From 17c425a613db6ceb015c6daf0443c4cab982197f Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Tue, 27 Jun 2023 12:47:53 +0100 Subject: [PATCH 16/37] testing auto-label gha 16 --- .github/workflows/ci-label.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci-label.yml b/.github/workflows/ci-label.yml index 587c6ce..db60c11 100644 --- a/.github/workflows/ci-label.yml +++ b/.github/workflows/ci-label.yml @@ -12,6 +12,7 @@ on: permissions: issues: write + pull-requests: write contents: read jobs: From 5837cdf48467fe1a28db6e310bf911a41801f92a Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 30 Jun 2023 13:55:15 +0100 Subject: [PATCH 17/37] testing auto-label gha 17 --- .github/workflows/ci-label.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/ci-label.yml b/.github/workflows/ci-label.yml index db60c11..14554a6 100644 --- a/.github/workflows/ci-label.yml +++ b/.github/workflows/ci-label.yml @@ -10,11 +10,6 @@ on: issues: types: [opened, edited, reopened] -permissions: - issues: write - pull-requests: write - contents: read - jobs: issue_triage: runs-on: ubuntu-latest From d006d3ecc01fad27c7f77ac4eef8313ea98d55f6 Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 30 Jun 2023 15:53:49 +0100 Subject: [PATCH 18/37] testing auto-label gha 18 --- .github/labeler.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index dae2d2a..24d581e 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,8 +1,8 @@ 'Type: Dependencies': - - '(dependencies|deps|dependency)' + - '(?i)(dependencies|deps|dependency)' 'Type: Documentation': - - '(documentation|docs)' + - (?i)'(documentation|docs)' 'Type: GHA': - '(gha|github action)' From 7c22a4d2f8491625cc990dc2b91972e3dadcc956 Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 30 Jun 2023 15:57:16 +0100 Subject: [PATCH 19/37] testing auto-label gha 19 --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 24d581e..a7a769f 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,5 +1,5 @@ 'Type: Dependencies': - - '(?i)(dependencies|deps|dependency)' + - '(dependencies|deps|dependency)' 'Type: Documentation': - (?i)'(documentation|docs)' From ee97ec4e6496e940cbc2304abae482597f724e20 Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 30 Jun 2023 15:58:59 +0100 Subject: [PATCH 20/37] testing auto-label gha 20 --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index a7a769f..c789727 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -2,7 +2,7 @@ - '(dependencies|deps|dependency)' 'Type: Documentation': - - (?i)'(documentation|docs)' + - '((?i)(documentation|docs))' 'Type: GHA': - '(gha|github action)' From 647286b89d791e498547c19d23ee84ad067c4f01 Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 30 Jun 2023 16:00:51 +0100 Subject: [PATCH 21/37] testing auto-label gha 21 --- .github/labeler.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index c789727..ca0acd5 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,8 +1,8 @@ 'Type: Dependencies': - - '(dependencies|deps|dependency)' + - '(?i/deps|dependency)' 'Type: Documentation': - - '((?i)(documentation|docs))' + - '(documentation|docs)' 'Type: GHA': - '(gha|github action)' From bde564beef78f5234824de73a9e0f901abad5543 Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 30 Jun 2023 16:08:13 +0100 Subject: [PATCH 22/37] testing auto-label gha 22 --- .github/labeler.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index ca0acd5..3d68d23 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,11 +1,11 @@ 'Type: Dependencies': - - '(?i/deps|dependency)' + - (?i)(dependencies|deps|dependency) 'Type: Documentation': - - '(documentation|docs)' + - (?i)(documentation|docs) 'Type: GHA': - - '(gha|github action)' + - (?i)(gha|github action) 'Type: Infrastructure': - '(dependencies|dependency|deps|documentation|docs|gha|github action|testing|tests|coverage)' From 7416b8389ae49bac1db6f86b8088f5f127b94d7f Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 30 Jun 2023 16:10:22 +0100 Subject: [PATCH 23/37] testing auto-label gha 23 --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 3d68d23..bc3f436 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,5 +1,5 @@ 'Type: Dependencies': - - (?i)(dependencies|deps|dependency) + - (?i)(deps) 'Type: Documentation': - (?i)(documentation|docs) From be49c0e48a28eda439f3c94321cdd05fd1fd3159 Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 30 Jun 2023 16:13:21 +0100 Subject: [PATCH 24/37] testing auto-label gha 24 --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index bc3f436..dbefd70 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,5 +1,5 @@ 'Type: Dependencies': - - (?i)(deps) + - '(?i)(deps)' 'Type: Documentation': - (?i)(documentation|docs) From 7e4d198bda4f676b17a29573edf09e3ca51957be Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 30 Jun 2023 16:15:49 +0100 Subject: [PATCH 25/37] testing auto-label gha 25 --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index dbefd70..84c400b 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,5 +1,5 @@ 'Type: Dependencies': - - '(?i)(deps)' + - '?i/(deps)' 'Type: Documentation': - (?i)(documentation|docs) From 49af671aa432ad4a32196fb482ac0dc907ca3a1a Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 30 Jun 2023 16:16:47 +0100 Subject: [PATCH 26/37] testing auto-label gha 26 --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 84c400b..f85d6ba 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,5 +1,5 @@ 'Type: Dependencies': - - '?i/(deps)' + - '?i(deps)' 'Type: Documentation': - (?i)(documentation|docs) From c21849a2e5081bf7839a9be55c3c0c9c8314d7ab Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 30 Jun 2023 16:19:00 +0100 Subject: [PATCH 27/37] testing auto-label gha 27 --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index f85d6ba..24877e3 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,5 +1,5 @@ 'Type: Dependencies': - - '?i(deps)' + - '?i\\(deps)' 'Type: Documentation': - (?i)(documentation|docs) From c9087324fa10d8a8b3e96d30d7998d895555af3e Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 30 Jun 2023 16:19:57 +0100 Subject: [PATCH 28/37] testing auto-label gha 28 --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 24877e3..a8b3698 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,5 +1,5 @@ 'Type: Dependencies': - - '?i\\(deps)' + - '?i\(deps)' 'Type: Documentation': - (?i)(documentation|docs) From 5852229dbcc07bd01dfd0a6e0ecfe8fabb3a01f4 Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 30 Jun 2023 16:22:02 +0100 Subject: [PATCH 29/37] testing auto-label gha 29 --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index a8b3698..64c93e7 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,5 +1,5 @@ 'Type: Dependencies': - - '?i\(deps)' + - '?i/(deps)\' 'Type: Documentation': - (?i)(documentation|docs) From 4564595533cb6050c2a54f6d8d8969c317deb90d Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 30 Jun 2023 16:29:40 +0100 Subject: [PATCH 30/37] testing auto-label gha 30 --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 64c93e7..c6cb79a 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,5 +1,5 @@ 'Type: Dependencies': - - '?i/(deps)\' + - '?i/(deps)/' 'Type: Documentation': - (?i)(documentation|docs) From f17b0b45425b1503257bdfaedeb1d87966ea3ef6 Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 30 Jun 2023 16:31:58 +0100 Subject: [PATCH 31/37] testing auto-label gha 31 --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index c6cb79a..90e747d 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,5 +1,5 @@ 'Type: Dependencies': - - '?i/(deps)/' + - '(?i)(deps)/' 'Type: Documentation': - (?i)(documentation|docs) From ce8220a376ade80531fb84cc6dec89b2e165f6d3 Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 30 Jun 2023 16:33:10 +0100 Subject: [PATCH 32/37] testing auto-label gha 32 --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 90e747d..e44f524 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,5 +1,5 @@ 'Type: Dependencies': - - '(?i)(deps)/' + - '(?i\deps)' 'Type: Documentation': - (?i)(documentation|docs) From 73492942e0e619841d37d57b4bd14cba5c0224d1 Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 30 Jun 2023 16:33:55 +0100 Subject: [PATCH 33/37] testing auto-label gha 33 --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index e44f524..a57d466 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,5 +1,5 @@ 'Type: Dependencies': - - '(?i\deps)' + - '(?i\\deps)' 'Type: Documentation': - (?i)(documentation|docs) From 864a95edab90cdf1d23dcfb37627bc0032f729fb Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 30 Jun 2023 16:34:43 +0100 Subject: [PATCH 34/37] testing auto-label gha 34 --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index a57d466..05a4db6 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,5 +1,5 @@ 'Type: Dependencies': - - '(?i\\deps)' + - '(?i/deps)' 'Type: Documentation': - (?i)(documentation|docs) From 79f8bd845f806a0952c2453e9df5e01bf8cce9f1 Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 30 Jun 2023 16:41:21 +0100 Subject: [PATCH 35/37] testing auto-label gha 35 --- .github/labeler.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 05a4db6..a56e1ed 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,29 +1,29 @@ 'Type: Dependencies': - - '(?i/deps)' + - '(depende|deps|Deps|Depende)' 'Type: Documentation': - - (?i)(documentation|docs) + - '(documentation|Docs|Documentation|Docs)' 'Type: GHA': - - (?i)(gha|github action) + - '(gha|github action|GHA|Github Action|Github action)' 'Type: Infrastructure': - - '(dependencies|dependency|deps|documentation|docs|gha|github action|testing|tests|coverage)' + - '(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|Testing|Tests|Coverage)' 'Type: Bug': - - '(bug|patch|fix)' + - '(bug|patch|fix|Bug|Fix|Patch)' 'Type: Enhancement': - - '(feature)' + - '(feature|Feature)' 'Type: Performance': - - '(performance)' + - '(performance|Performance)' 'Type: Tech Debt': - - '(debt)' + - '(debt|Debt)' 'Type: Question': - - '(question)' + - '(question|Question)' From 5ea4738f52ee74ad7a5a03cf815d6c99c3ff6cee Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 30 Jun 2023 16:42:07 +0100 Subject: [PATCH 36/37] testing auto-label gha 36 --- .github/workflows/ci-label.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-label.yml b/.github/workflows/ci-label.yml index 14554a6..ac6b3bd 100644 --- a/.github/workflows/ci-label.yml +++ b/.github/workflows/ci-label.yml @@ -23,5 +23,6 @@ jobs: with: configuration-path: .github/labeler.yml enable-versioned-regex: 0 - repo-token: ${{ secrets.GITHUB_TOKEN }} include-title: 1 + repo-token: ${{ secrets.GITHUB_TOKEN }} + sync-labels: 1 From abcd2ee2f12756534183d5dca2099821efebc87d Mon Sep 17 00:00:00 2001 From: Henry Wright Date: Fri, 1 Aug 2025 15:27:54 +0100 Subject: [PATCH 37/37] remove 3.14 wheels --- .github/workflows/ci-wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-wheels.yml b/.github/workflows/ci-wheels.yml index 17c6682..9d5f79d 100644 --- a/.github/workflows/ci-wheels.yml +++ b/.github/workflows/ci-wheels.yml @@ -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"