Skip to content

Commit

Permalink
chore: More tinkering
Browse files Browse the repository at this point in the history
  • Loading branch information
bgins committed Feb 8, 2024
1 parent d9d2d15 commit e2160e2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/schemas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ jobs:
id: git-check
run: echo modified=$(if git diff-index --quiet HEAD --; then echo "false"; else echo "true"; fi) >> $GITHUB_OUTPUT

- name: Show check modified value
env:
CHANGED: ${{ steps.git-check.outputs.modified }}
run: |
echo "$CHANGED"
- name: Push changes
# if: steps.changed-files.outputs.any_changed == 'true'
if: steps.git-check.outputs.modified == 'true'
Expand Down

0 comments on commit e2160e2

Please sign in to comment.