Skip to content

Commit dff50ca

Browse files
committed
debug 6
1 parent b50bc5e commit dff50ca

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

.github/workflows/label-validation.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,7 @@ jobs:
2222
import re
2323
import os
2424
25-
# Print all PR labels
26-
labels_json = r'''${{ toJson(github.event.pull_request.labels) }}'''
27-
print("All PR labels JSON:")
28-
print(labels_json)
29-
30-
labels = json.loads(labels_json)
25+
labels = json.loads(r'''${{ toJson(github.event.pull_request.labels) }}''')
3126
label_names = [label['name'] for label in labels]
3227
print(f"Label names: {label_names}")
3328

0 commit comments

Comments
 (0)