We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Fixes
1 parent a5a8702 commit fae105cCopy full SHA for fae105c
.github/workflows/close-pulls.yml
@@ -23,6 +23,10 @@ jobs:
23
)
24
echo "fixed_list=${COMMIT_MESSAGE}" >> $GITHUB_OUTPUT
25
26
+ - name: Check if fixes list is empty
27
+ if: ${{ steps.parse-commit.outputs.fixed_list == '' }}
28
+ run: echo "No fixes found in commit message. Stopping workflow." && exit 0
29
+
30
- name: Print fixes list for debugging
31
run: |
32
echo "Fixes list: ${{ steps.parse-commit.outputs.fixed_list }}"
0 commit comments