Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
SableRaf committed Jan 11, 2025
1 parent 78bc519 commit 2db17a0
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/issue_to_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,17 @@ jobs:
echo "labels=$labels" >> $GITHUB_ENV
- name: Determine category from labels
id: determineCategory
run: |
labels_json='${{ env.labels }}'
echo "Labels: $labels_json"
category=$(python scripts/determine_category.py "$labels_json")
if [ -z "$category" ]; then
echo "Category is empty. Please ensure the issue has a valid label."
exit 1
fi
echo "category=$category" >> $GITHUB_OUTPUT
echo "Category found: $category"
id: determineCategory
run: |
labels_json='${{ env.labels }}'
echo "Labels: $labels_json"
category=$(python scripts/determine_category.py "$labels_json")
if [ -z "$category" ]; then
echo "Category is empty. Please ensure the issue has a valid label."
exit 1
fi
echo "category=$category" >> $GITHUB_OUTPUT
echo "Category found: $category"
- name: Debug payload
run: echo "${{ steps.parseIssue.outputs.payload }}"
Expand Down

0 comments on commit 2db17a0

Please sign in to comment.