Skip to content

Commit f20a000

Browse files
Add debugging to pr labeler workflow so we can debug failures
1 parent 3e49dce commit f20a000

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/pr-label-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: PR Label Analysis
22

33
on:
44
pull_request:
5-
types: [opened]
5+
types: [opened, synchronize] # TODO katiewasnothere: for testing
66

77
permissions:
88
contents: read

.github/workflows/pr-label-apply.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,12 @@ jobs:
2929
run-id: ${{ github.event.workflow_run.id }}
3030
pattern: pr-metadata-*
3131
merge-multiple: false
32-
continue-on-error: true
3332
id: download-artifact
33+
34+
- name: Debug workspace contents
35+
run: |
36+
echo "Workspace contents:"
37+
ls -R
3438
3539
- name: Read PR number
3640
id: pr-number

0 commit comments

Comments
 (0)