Skip to content

Commit 2db17a0

Browse files
committed
Fix indentation
1 parent 78bc519 commit 2db17a0

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/issue_to_pr.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,17 @@ jobs:
4545
echo "labels=$labels" >> $GITHUB_ENV
4646
4747
- name: Determine category from labels
48-
id: determineCategory
49-
run: |
50-
labels_json='${{ env.labels }}'
51-
echo "Labels: $labels_json"
52-
category=$(python scripts/determine_category.py "$labels_json")
53-
if [ -z "$category" ]; then
54-
echo "Category is empty. Please ensure the issue has a valid label."
55-
exit 1
56-
fi
57-
echo "category=$category" >> $GITHUB_OUTPUT
58-
echo "Category found: $category"
48+
id: determineCategory
49+
run: |
50+
labels_json='${{ env.labels }}'
51+
echo "Labels: $labels_json"
52+
category=$(python scripts/determine_category.py "$labels_json")
53+
if [ -z "$category" ]; then
54+
echo "Category is empty. Please ensure the issue has a valid label."
55+
exit 1
56+
fi
57+
echo "category=$category" >> $GITHUB_OUTPUT
58+
echo "Category found: $category"
5959
6060
- name: Debug payload
6161
run: echo "${{ steps.parseIssue.outputs.payload }}"

0 commit comments

Comments
 (0)