From ceb0c2d04fc97253318a3ff75752ba6bb53a968a Mon Sep 17 00:00:00 2001 From: rzuckerm Date: Sat, 22 Nov 2025 13:33:19 -0600 Subject: [PATCH 1/9] Update to actions/checkout@v6 --- .github/workflows/codeql-analysis.yml | 4 ++-- .github/workflows/readme.yml | 2 +- .github/workflows/test-suite.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index af3746c9a..688e54073 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -85,7 +85,7 @@ jobs: matrix: ${{ steps.set-matrix.outputs.matrix }} changed-files: ${{ steps.changed-files.outputs.files }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 2 @@ -127,7 +127,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 2 diff --git a/.github/workflows/readme.yml b/.github/workflows/readme.yml index 1622f853d..5690430ea 100644 --- a/.github/workflows/readme.yml +++ b/.github/workflows/readme.yml @@ -30,7 +30,7 @@ jobs: app-id: ${{ secrets.README_BOT_APP_ID }} private-key: ${{ secrets.README_BOT_PRIVATE_KEY }} - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Read repo config uses: pietrobolcato/action-read-yaml@1.1.0 diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index ea9a2675b..ee0681cf1 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -35,7 +35,7 @@ jobs: status: ${{ steps.changed-files.outputs.exists }} changed_files: ${{ steps.changed-files.outputs.files }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 2 @@ -70,7 +70,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 2 From a0aee840a44ae05ce5cee25a1eb7b881aeea4c94 Mon Sep 17 00:00:00 2001 From: rzuckerm Date: Sat, 22 Nov 2025 13:41:48 -0600 Subject: [PATCH 2/9] Try adding '**' to paths --- .github/workflows/pr-labeler.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml index b3d5e231a..ecce036b5 100644 --- a/.github/workflows/pr-labeler.yml +++ b/.github/workflows/pr-labeler.yml @@ -2,6 +2,7 @@ name: "Pull Request Labeler" on: pull_request_target: paths: + - '**' - '!archive/*/*/*.md' jobs: From 5ae9457f09df21e07dcd8d24c5a7d394cbeaaf67 Mon Sep 17 00:00:00 2001 From: rzuckerm Date: Sat, 22 Nov 2025 13:50:58 -0600 Subject: [PATCH 3/9] Try to force PR labeler to run again --- .github/labeler.yml | 1 + .github/workflows/pr-labeler.yml | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index fc4202a82..f5de90f0d 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -304,3 +304,4 @@ transpose matrix: - archive/*/*/transposeMatrix.* - archive/*/*/transpose_matrix.* - base-branch: main + diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml index ecce036b5..984de525a 100644 --- a/.github/workflows/pr-labeler.yml +++ b/.github/workflows/pr-labeler.yml @@ -1,9 +1,7 @@ name: "Pull Request Labeler" on: pull_request_target: - paths: - - '**' - - '!archive/*/*/*.md' + workflow_dispatch: jobs: pr-labeler: From de41c41d57714879c0087abacab55a3374803abb Mon Sep 17 00:00:00 2001 From: rzuckerm Date: Sat, 22 Nov 2025 13:57:47 -0600 Subject: [PATCH 4/9] Try again to get PR labeler workflow to trigger --- .github/labeler.yml | 1 - .github/workflows/pr-labeler.yml | 4 +--- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index f5de90f0d..fc4202a82 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -304,4 +304,3 @@ transpose matrix: - archive/*/*/transposeMatrix.* - archive/*/*/transpose_matrix.* - base-branch: main - diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml index 984de525a..6c1f25e16 100644 --- a/.github/workflows/pr-labeler.yml +++ b/.github/workflows/pr-labeler.yml @@ -1,7 +1,5 @@ name: "Pull Request Labeler" -on: - pull_request_target: - workflow_dispatch: +on: [pull_request_target] jobs: pr-labeler: From 4a9c825ad234059f524fc0b7c188e6ba6186ceaf Mon Sep 17 00:00:00 2001 From: rzuckerm Date: Sat, 22 Nov 2025 14:08:52 -0600 Subject: [PATCH 5/9] Try moving permissions and adding pull request types --- .github/workflows/pr-labeler.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml index 6c1f25e16..27ea23381 100644 --- a/.github/workflows/pr-labeler.yml +++ b/.github/workflows/pr-labeler.yml @@ -1,11 +1,16 @@ name: "Pull Request Labeler" -on: [pull_request_target] +on: + pull_request: + types: + - opened + - synchronize + +permissions: + contents: read + pull-requests: write jobs: - pr-labeler: - permissions: - contents: read - pull-requests: write + labeler: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 From 998e1348f2dddfee89f9bbce9f6ee34cdd8a1961 Mon Sep 17 00:00:00 2001 From: rzuckerm Date: Sat, 22 Nov 2025 14:11:02 -0600 Subject: [PATCH 6/9] Move permissions back --- .github/workflows/pr-labeler.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml index 27ea23381..39b7679a7 100644 --- a/.github/workflows/pr-labeler.yml +++ b/.github/workflows/pr-labeler.yml @@ -5,12 +5,11 @@ on: - opened - synchronize -permissions: - contents: read - pull-requests: write - jobs: labeler: + permissions: + contents: read + pull-requests: write runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 From 98ac8d6b26378a68df918255d81f207b46d9df8d Mon Sep 17 00:00:00 2001 From: rzuckerm Date: Sat, 22 Nov 2025 14:14:44 -0600 Subject: [PATCH 7/9] Try moving permissions again --- .github/workflows/pr-labeler.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml index 39b7679a7..7fbc59d05 100644 --- a/.github/workflows/pr-labeler.yml +++ b/.github/workflows/pr-labeler.yml @@ -1,15 +1,16 @@ name: "Pull Request Labeler" + +permissions: + contents: read + pull-requests: write + on: pull_request: types: - opened - synchronize - jobs: labeler: - permissions: - contents: read - pull-requests: write runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 From d63656ae7ee18a72bbb75b7c08c5fbb74a0df7d5 Mon Sep 17 00:00:00 2001 From: rzuckerm Date: Sat, 22 Nov 2025 14:23:17 -0600 Subject: [PATCH 8/9] Add 'issues: write' --- .github/workflows/pr-labeler.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml index 7fbc59d05..61324e949 100644 --- a/.github/workflows/pr-labeler.yml +++ b/.github/workflows/pr-labeler.yml @@ -2,6 +2,7 @@ name: "Pull Request Labeler" permissions: contents: read + issues: write pull-requests: write on: From e685cd094072e981e7833d80d073350d45250117 Mon Sep 17 00:00:00 2001 From: rzuckerm Date: Sat, 22 Nov 2025 14:28:42 -0600 Subject: [PATCH 9/9] Move the permissions back inside the job --- .github/workflows/pr-labeler.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml index 61324e949..0b92f5f5f 100644 --- a/.github/workflows/pr-labeler.yml +++ b/.github/workflows/pr-labeler.yml @@ -1,17 +1,16 @@ name: "Pull Request Labeler" -permissions: - contents: read - issues: write - pull-requests: write - on: pull_request: types: - opened - synchronize + jobs: labeler: + permissions: + contents: read + pull-requests: write runs-on: ubuntu-latest steps: - uses: actions/checkout@v6