Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
armiro committed Jul 29, 2023
1 parent 18e2c1c commit f993ad8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ jobs:
diff_result=$(git diff --exit-code ./README.md)
set -e
has_changed="False"; [ -n "$diff_result" ] && has_changed="True"
echo "{has_changed}={$has_changed}" >> $GITHUB_OUTPUT
echo "has_changed=$has_changed" >> $GITHUB_OUTPUT
echo "debugging..."
echo "$has_changed"
echo "done."
- name: debug has_changed value
run: echo "has_changed=${{ steps.check_if_pylint_score_has_changed.outputs.has_changed }}"
run: echo "has_changed=${{ needs.check_changes.outputs.has_changed }}"

- name: commit and push changes if any
if: ${{ needs.check_changes.outputs.has_changed == 'true' }}
Expand Down

0 comments on commit f993ad8

Please sign in to comment.