From 6451e078b042b7bd211433c3632e6523ad2fed9a Mon Sep 17 00:00:00 2001 From: Kathryn Baldauf Date: Wed, 4 Feb 2026 14:44:53 -0800 Subject: [PATCH] Add debugging to the PR labeler CI flow (#1155) ## Type of Change - [x] Bug fix ## Motivation and Context The PR labeler workflow has been failing for a while but it's difficult to know how to fix it since the PR labeler workflow is run from main (aka NOT the current PR branch) for security reasons. Example at https://github.com/apple/container/actions/runs/21690229300/workflow --- .github/workflows/pr-label-apply.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-label-apply.yml b/.github/workflows/pr-label-apply.yml index 56012523..12a15165 100644 --- a/.github/workflows/pr-label-apply.yml +++ b/.github/workflows/pr-label-apply.yml @@ -29,8 +29,12 @@ jobs: run-id: ${{ github.event.workflow_run.id }} pattern: pr-metadata-* merge-multiple: false - continue-on-error: true id: download-artifact + + - name: Debug workspace contents + run: | + echo "Workspace contents:" + ls -R - name: Read PR number id: pr-number